PlayerAndroid/app/src/main/res/layout/activity_main_content.xml

28 lines
1.0 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
2020-08-13 08:24:36 +00:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2020-02-18 19:11:26 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2020-08-13 08:24:36 +00:00
xmlns:tools="http://schemas.android.com/tools"
2018-08-30 09:29:30 +00:00
android:layout_width="match_parent"
2020-02-18 19:11:26 +00:00
android:layout_height="match_parent"
2020-08-13 08:24:36 +00:00
android:background="?colorSurface"
android:orientation="vertical">
2020-02-18 19:11:26 +00:00
2020-08-13 08:24:36 +00:00
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="0dp"
tools:ignore="UnusedAttribute">
<include layout="@layout/status_bar" />
</FrameLayout>
<androidx.fragment.app.FragmentContainerView
android:id="@+id/fragment_container"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:defaultNavHost="true"
2020-09-25 17:38:59 +00:00
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
2020-08-13 08:24:36 +00:00
</LinearLayout>