2016-06-14 11:24:57 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-04-21 17:57:15 +02:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-10-25 20:26:53 +02:00
|
|
|
android:id="@+id/fragment_holder"
|
2016-06-14 11:24:57 +02:00
|
|
|
android:layout_width="match_parent"
|
2018-06-17 23:52:03 +02:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/fragment_placeholder"
|
|
|
|
android:layout_width="match_parent"
|
2020-04-21 17:57:15 +02:00
|
|
|
android:layout_height="match_parent" />
|
2018-06-17 23:52:03 +02:00
|
|
|
|
2019-01-04 18:07:17 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/top_shadow"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/default_status_action_height"
|
2020-04-21 17:57:15 +02:00
|
|
|
android:background="@drawable/gradient_background_flipped"
|
|
|
|
android:contentDescription="@null" />
|
2019-01-04 18:07:17 +01:00
|
|
|
|
2018-06-17 23:52:03 +02:00
|
|
|
<include
|
|
|
|
android:id="@+id/bottom_actions"
|
2020-04-21 17:57:15 +02:00
|
|
|
layout="@layout/bottom_actions"
|
|
|
|
android:visibility="gone" />
|
2018-06-17 23:52:03 +02:00
|
|
|
|
|
|
|
</RelativeLayout>
|