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"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
<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">
@ -13,12 +12,13 @@
<ImageView
android:id="@+id/top_shadow"
android:layout_width="match_parent"
android:contentDescription="@null"
android:layout_height="@dimen/default_status_action_height"
android:background="@drawable/gradient_background_flipped"/>
android:background="@drawable/gradient_background_flipped"
android:contentDescription="@null" />
<include
android:id="@+id/bottom_actions"
layout="@layout/bottom_actions"/>
layout="@layout/bottom_actions"
android:visibility="gone" />
</RelativeLayout>