2024-01-19 06:45:18 +00:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2023-12-18 01:16:05 +00:00
|
|
|
android:layout_width="match_parent"
|
2024-01-19 06:45:18 +00:00
|
|
|
android:layout_height="match_parent">
|
2023-12-19 03:56:31 +00:00
|
|
|
|
2024-01-19 06:45:18 +00:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2023-12-18 01:16:05 +00:00
|
|
|
|
2024-01-19 06:45:18 +00:00
|
|
|
<com.google.android.material.appbar.CollapsingToolbarLayout
|
|
|
|
android:id="@+id/collapsing_toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed">
|
2023-12-19 03:56:31 +00:00
|
|
|
|
2024-01-19 06:45:18 +00:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
app:layout_collapseMode="pin" />
|
2023-12-19 03:56:31 +00:00
|
|
|
|
2024-01-19 06:45:18 +00:00
|
|
|
</com.google.android.material.appbar.CollapsingToolbarLayout>
|
2023-12-19 03:56:31 +00:00
|
|
|
|
2024-01-19 06:45:18 +00:00
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2023-12-18 01:16:05 +00:00
|
|
|
|
2024-01-19 06:45:18 +00:00
|
|
|
<!-- Your content here -->
|
2024-01-17 03:35:30 +00:00
|
|
|
|
2024-01-19 06:45:18 +00:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|