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

50 lines
2 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-07-27 18:37:33 +05:30
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
2019-12-05 23:48:54 +05:30
android:layout_height="match_parent"
android:orientation="vertical">
2018-07-27 18:37:33 +05:30
2019-12-05 23:48:54 +05:30
<code.name.monkey.retromusic.views.StatusBarView
android:id="@+id/status_bar"
2019-04-05 11:19:40 +05:30
android:layout_width="match_parent"
2019-12-05 23:48:54 +05:30
android:layout_height="0dp"
tools:ignore="UnusedAttribute" />
2019-09-28 23:22:49 +05:30
2019-12-05 23:48:54 +05:30
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/colorSurface">
<androidx.core.widget.NestedScrollView
2020-01-05 23:52:21 +05:30
android:id="@+id/container"
2019-09-28 23:22:49 +05:30
android:layout_width="match_parent"
2019-12-05 23:48:54 +05:30
android:layout_height="wrap_content"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">
2019-04-05 11:19:40 +05:30
2019-12-05 23:48:54 +05:30
<FrameLayout
android:id="@+id/contentFrame"
android:layout_width="match_parent"
2020-01-06 01:55:55 +05:30
android:layout_height="wrap_content" />
2019-12-05 23:48:54 +05:30
</androidx.core.widget.NestedScrollView>
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:liftOnScroll="true">
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/toolbar"
style="@style/Toolbar"
app:layout_collapseMode="pin"
app:navigationIcon="@drawable/ic_keyboard_backspace_black_24dp"
app:titleTextAppearance="@style/ToolbarTextAppearanceNormal"
tools:title="@string/action_settings" />
</com.google.android.material.appbar.AppBarLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</LinearLayout>
2018-07-27 18:37:33 +05:30