2020-04-13 01:59:19 +05:30
|
|
|
<?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"
|
2020-04-24 17:09:13 +05:30
|
|
|
android:id="@+id/toolbar_layout"
|
2020-04-13 01:59:19 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-08-16 21:15:46 +05:30
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed"
|
2020-04-13 01:59:19 +05:30
|
|
|
app:liftOnScroll="true">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
style="@style/Widget.MaterialComponents.Toolbar.Primary"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
2020-04-19 03:10:18 +05:30
|
|
|
android:theme="@style/AppTheme.ActionBar"
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways|snap" />
|
2020-04-13 01:59:19 +05:30
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|