16 lines
711 B
XML
16 lines
711 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<com.google.android.material.appbar.CollapsingToolbarLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="52dp"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:background="@drawable/toolbar_background"
|
|
android:backgroundTint="?colorSurface"
|
|
android:elevation="3dp"
|
|
app:layout_scrollFlags="scroll|enterAlways">
|
|
|
|
<include layout="@layout/toolbar" />
|
|
</com.google.android.material.appbar.CollapsingToolbarLayout> |