hide the bottom actions by default

This commit is contained in:
tibbi 2020-04-21 17:57:15 +02:00
parent ea1f4781e0
commit f2c77693db

View file

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_holder" android:id="@+id/fragment_holder"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent"> android:layout_height="match_parent">
@ -8,17 +7,18 @@
<FrameLayout <FrameLayout
android:id="@+id/fragment_placeholder" android:id="@+id/fragment_placeholder"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent"/> android:layout_height="match_parent" />
<ImageView <ImageView
android:id="@+id/top_shadow" android:id="@+id/top_shadow"
android:layout_width="match_parent" android:layout_width="match_parent"
android:contentDescription="@null"
android:layout_height="@dimen/default_status_action_height" android:layout_height="@dimen/default_status_action_height"
android:background="@drawable/gradient_background_flipped"/> android:background="@drawable/gradient_background_flipped"
android:contentDescription="@null" />
<include <include
android:id="@+id/bottom_actions" android:id="@+id/bottom_actions"
layout="@layout/bottom_actions"/> layout="@layout/bottom_actions"
android:visibility="gone" />
</RelativeLayout> </RelativeLayout>