2024-01-22 01:54:51 +00:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-12-07 01:36:00 +00:00
|
|
|
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"
|
2024-01-22 01:54:51 +00:00
|
|
|
android:background="@color/colorSurface">
|
|
|
|
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/app_bar_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.CollapsingToolbarLayout
|
|
|
|
android:id="@+id/collapsing_toolbar"
|
|
|
|
app:contentScrim="@color/colorSecondaryContainer"
|
|
|
|
android:background="@color/colorSurface"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="160dp"
|
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
android:minHeight="?attr/actionBarSize"
|
|
|
|
app:collapsedTitleGravity="start|center_vertical"
|
|
|
|
app:expandedTitleGravity="start|bottom"
|
|
|
|
app:expandedTitleMarginBottom="16dp"
|
|
|
|
app:expandedTitleMarginStart="16dp"
|
|
|
|
app:expandedTitleTextAppearance="@style/TextAppearance.MaterialComponents.Headline4"
|
|
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
app:layout_collapseMode="pin"
|
|
|
|
app:title="HOGE" />
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.CollapsingToolbarLayout>
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
|
|
|
|
|
|
android:id="@+id/nav_host_fragment"
|
|
|
|
android:name="androidx.navigation.fragment.NavHostFragment"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:defaultNavHost="true"
|
|
|
|
app:navGraph="@navigation/main_nav"
|
|
|
|
tools:layout="@layout/fragment_home_top" />
|
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
|
|
|
|
|
</FrameLayout>
|