FossifyGallery/app/src/main/res/layout/fragment_holder.xml

25 lines
820 B
XML
Raw Normal View History

<?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"
android:id="@+id/fragment_holder"
android:layout_width="match_parent"
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" />
<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" />
<include
android:id="@+id/bottom_actions"
2020-04-21 17:57:15 +02:00
layout="@layout/bottom_actions"
android:visibility="gone" />
</RelativeLayout>