2020-08-11 23:59:44 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-07-27 18:37:33 +05:30
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-08-08 13:33:38 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-08-08 13:33:38 +05:30
|
|
|
android:layout_height="match_parent"
|
2019-12-10 23:06:20 +05:30
|
|
|
android:background="?colorSurface"
|
2018-08-08 13:33:38 +05:30
|
|
|
android:orientation="vertical">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-22 23:24:07 +05:30
|
|
|
<FrameLayout
|
2018-09-10 01:14:46 +05:30
|
|
|
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-08-11 23:59:44 +05:30
|
|
|
android:id="@+id/mainContent"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-09-10 01:14:46 +05:30
|
|
|
android:layout_height="match_parent">
|
2018-08-22 23:24:07 +05:30
|
|
|
|
2018-09-10 01:14:46 +05:30
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2018-12-08 09:04:15 +05:30
|
|
|
android:id="@+id/appBarLayout"
|
2018-08-08 13:33:38 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-09-10 01:14:46 +05:30
|
|
|
android:layout_height="wrap_content"
|
2019-09-02 20:21:53 +05:30
|
|
|
app:liftOnScroll="true">
|
2018-08-08 13:33:38 +05:30
|
|
|
|
2020-08-11 23:59:44 +05:30
|
|
|
<FrameLayout
|
2018-08-08 13:33:38 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-09 21:08:32 +05:30
|
|
|
app:layout_scrollFlags="scroll|enterAlways">
|
2018-08-08 13:33:38 +05:30
|
|
|
|
2020-08-11 23:59:44 +05:30
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
2018-11-20 20:57:59 +05:30
|
|
|
android:layout_width="match_parent"
|
2020-08-11 23:59:44 +05:30
|
|
|
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>
|
2018-09-10 01:14:46 +05:30
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2018-08-10 22:40:43 +05:30
|
|
|
|
2020-08-11 23:59:44 +05:30
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
|
|
android:id="@+id/fragment_container"
|
|
|
|
android:name="androidx.navigation.fragment.NavHostFragment"
|
2018-09-10 01:14:46 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-08-11 23:59:44 +05:30
|
|
|
app:defaultNavHost="true"
|
|
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"
|
|
|
|
app:navGraph="@navigation/library_graph" />
|
2018-09-10 01:14:46 +05:30
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
2020-08-11 23:59:44 +05:30
|
|
|
</LinearLayout>
|