49 lines
No EOL
2.4 KiB
XML
49 lines
No EOL
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout 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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fitsSystemWindows="true">
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/contentFrame"
|
|
android:name="androidx.navigation.fragment.NavHostFragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="?attr/colorSurface"
|
|
app:defaultNavHost="true"
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"
|
|
app:navGraph="@navigation/settings_graph" />
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
android:id="@+id/appBarLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fitsSystemWindows="true"
|
|
app:liftOnScroll="true">
|
|
|
|
<com.google.android.material.appbar.CollapsingToolbarLayout
|
|
android:id="@+id/collapsingToolbarLayout"
|
|
style="?attr/collapsingToolbarLayoutLargeStyle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/collapsingToolbarLayoutLargeSize"
|
|
app:collapsedTitleTextAppearance="@style/TextViewHeadline6"
|
|
app:expandedTitleMarginBottom="24dp"
|
|
app:expandedTitleMarginEnd="24dp"
|
|
app:expandedTitleMarginStart="24dp"
|
|
app:expandedTitleTextAppearance="@style/TextViewHeadline4"
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed|snap|enterAlwaysCollapsed">
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
android:id="@+id/toolbar"
|
|
style="@style/Toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?actionBarSize"
|
|
app:layout_collapseMode="pin"
|
|
app:navigationIcon="@drawable/ic_keyboard_backspace_black"
|
|
app:titleTextAppearance="@style/ToolbarTextAppearanceNormal"
|
|
tools:title="@string/action_settings" />
|
|
</com.google.android.material.appbar.CollapsingToolbarLayout>
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |