2020-04-12 22:29:19 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<com.google.android.material.appbar.AppBarLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2021-01-30 14:59:11 +01:00
|
|
|
android:id="@+id/app_bar_layout"
|
2020-04-12 22:29:19 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-08-16 17:45:46 +02:00
|
|
|
android:fitsSystemWindows="true"
|
2021-01-30 14:59:11 +01:00
|
|
|
android:keyboardNavigationCluster="false"
|
|
|
|
android:touchscreenBlocksFocus="false">
|
2020-04-12 22:29:19 +02:00
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
2021-01-30 14:59:11 +01:00
|
|
|
app:elevation="16dp"
|
|
|
|
app:layout_scrollFlags="scroll" />
|
2020-04-12 22:29:19 +02:00
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|