Audinaut-subsonic-app-android/app/src/main/res/layout/abstract_fragment_activity.xml

26 lines
947 B
XML

<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:sothree="http://schemas.android.com/apk/res-auto"
android:id="@+id/slide_up_panel"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="bottom">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.appcompat.widget.Toolbar
android:id="@+id/main_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@android:color/transparent"
android:elevation="4dp"
android:theme="?attr/actionbarThemeStyle"
app:popupTheme="?attr/actionbarPopupStyle" />
<include layout="@layout/abstract_fragment_container" />
</FrameLayout>
</FrameLayout>