RetroMusicPlayer/app/src/main/res/layout/activity_about.xml

49 lines
2.1 KiB
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?xml version="1.0" encoding="utf-8"?>
2019-12-05 23:48:54 +05:30
<LinearLayout 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"
2019-12-05 23:48:54 +05:30
xmlns:tools="http://schemas.android.com/tools"
2018-08-05 22:05:09 +05:30
android:layout_width="match_parent"
2019-12-05 23:48:54 +05:30
android:layout_height="match_parent"
android:orientation="vertical">
2018-08-08 13:33:38 +05:30
2019-12-05 23:48:54 +05:30
<code.name.monkey.retromusic.views.StatusBarView
android:id="@+id/status_bar"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
2019-12-05 23:48:54 +05:30
android:layout_height="0dp"
android:background="?attr/colorSurface"
tools:ignore="UnusedAttribute" />
2018-08-08 13:33:38 +05:30
2019-12-05 23:48:54 +05:30
<androidx.coordinatorlayout.widget.CoordinatorLayout
2018-08-08 13:33:38 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
2019-12-05 23:48:54 +05:30
android:background="?attr/colorSurface">
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2020-05-25 00:02:32 +05:30
android:background="?attr/colorSurface"
2019-12-05 23:48:54 +05:30
app:liftOnScroll="true">
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/toolbar"
style="@style/Toolbar"
2020-05-25 00:02:32 +05:30
android:background="?attr/colorSurface"
2019-12-05 23:48:54 +05:30
app:layout_collapseMode="pin"
app:navigationIcon="@drawable/ic_keyboard_backspace_black_24dp"
app:title="@string/action_about"
app:titleTextAppearance="@style/ToolbarTextAppearanceNormal" />
</com.google.android.material.appbar.AppBarLayout>
<androidx.core.widget.NestedScrollView
2020-01-05 23:52:21 +05:30
android:id="@+id/container"
2019-12-05 23:48:54 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
2020-05-25 00:02:32 +05:30
android:overScrollMode="never"
2019-12-05 23:48:54 +05:30
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">
2018-07-27 18:37:33 +05:30
2019-12-05 23:48:54 +05:30
<include layout="@layout/activity_about_content" />
</androidx.core.widget.NestedScrollView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</LinearLayout>