2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-08-08 13:33:38 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-08-05 22:05:09 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-08-08 13:33:38 +05:30
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2018-12-04 21:04:26 +05:30
|
|
|
android:id="@+id/appBarLayout"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-08-08 13:33:38 +05:30
|
|
|
android:layout_height="wrap_content"
|
2019-10-01 23:45:06 +05:30
|
|
|
android:background="?colorPrimary"
|
2019-09-27 21:06:10 +05:30
|
|
|
app:liftOnScroll="true">
|
2018-08-08 13:33:38 +05:30
|
|
|
|
2019-09-27 21:06:10 +05:30
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
2018-08-30 14:59:30 +05:30
|
|
|
android:id="@+id/toolbar"
|
2018-12-04 21:04:26 +05:30
|
|
|
style="@style/Toolbar"
|
2018-11-05 19:23:07 +05:30
|
|
|
app:layout_collapseMode="pin"
|
|
|
|
app:navigationIcon="@drawable/ic_keyboard_backspace_black_24dp"
|
2019-11-15 22:00:10 +05:30
|
|
|
app:title="@string/action_about"
|
|
|
|
app:titleTextAppearance="@style/ToolbarTextAppearanceNormal" />
|
2018-08-30 14:59:30 +05:30
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<androidx.core.widget.NestedScrollView
|
2018-08-08 13:33:38 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-11-12 23:02:30 +05:30
|
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-08 13:33:38 +05:30
|
|
|
<include layout="@layout/activity_about_content" />
|
2018-08-30 14:59:30 +05:30
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|