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

61 lines
2.5 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
2020-02-18 19:11:26 +00:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
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"
android:background="?colorSurface"
android:orientation="vertical">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="0dp"
tools:ignore="UnusedAttribute">
<include layout="@layout/status_bar" />
</FrameLayout>
<androidx.coordinatorlayout.widget.CoordinatorLayout
2020-04-26 16:49:46 +00:00
android:id="@+id/mainContent"
android:layout_width="match_parent"
2020-02-18 19:11:26 +00:00
android:layout_height="match_parent">
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:liftOnScroll="true">
2020-05-07 06:57:24 +00:00
<FrameLayout
2020-02-18 19:11:26 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_scrollFlags="scroll|enterAlways">
2020-05-07 06:57:24 +00:00
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
2020-02-18 19:11:26 +00:00
android:layout_width="match_parent"
2020-05-07 06:57:24 +00:00
android:layout_height="wrap_content"
android:background="?attr/colorSurface"
app:popupTheme="?attr/toolbarPopupTheme"
app:title="@string/app_name"
app:titleTextAppearance="@style/ToolbarTextAppearanceNormal.Library"
app:titleTextColor="?attr/colorControlNormal"
tools:ignore="UnusedAttribute" />
<ViewStub
android:id="@+id/cab_stub"
android:layout_width="match_parent"
android:layout_height="@dimen/toolbar_height" />
</FrameLayout>
2020-02-18 19:11:26 +00:00
</com.google.android.material.appbar.AppBarLayout>
2020-07-28 19:18:34 +00:00
<androidx.fragment.app.FragmentContainerView
2020-02-18 19:11:26 +00:00
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"
tools:layout="@layout/fragment_main_activity_recycler_view" />
2020-02-18 19:11:26 +00:00
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</LinearLayout>