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

58 lines
2.1 KiB
XML
Raw Normal View History

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-22 23:24:07 +05:30
xmlns:tools="http://schemas.android.com/tools"
2018-08-05 22:05:09 +05:30
android:layout_width="match_parent"
2018-08-22 23:24:07 +05:30
android:layout_height="match_parent">
2018-08-08 13:33:38 +05:30
2018-08-30 14:59:30 +05:30
<com.google.android.material.appbar.AppBarLayout
2018-08-08 13:33:38 +05:30
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="0dp"
app:elevation="0dp">
2018-08-30 14:59:30 +05:30
<com.google.android.material.appbar.CollapsingToolbarLayout
2018-08-08 13:33:38 +05:30
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:titleEnabled="false">
2018-08-30 14:59:30 +05:30
<androidx.appcompat.widget.Toolbar
2018-08-08 13:33:38 +05:30
android:id="@+id/toolbar"
style="@style/Toolbar48"
app:layout_collapseMode="pin"
2018-08-22 23:24:07 +05:30
app:title=""
tools:ignore="UnusedAttribute">
2018-08-08 13:33:38 +05:30
<TextView
android:id="@+id/title"
2018-08-22 23:24:07 +05:30
style="@style/BigTitleTextAppearance"
android:text="@string/action_settings" />
2018-08-08 13:33:38 +05:30
2018-08-30 14:59:30 +05:30
</androidx.appcompat.widget.Toolbar>
</com.google.android.material.appbar.CollapsingToolbarLayout>
</com.google.android.material.appbar.AppBarLayout>
2018-08-08 13:33:38 +05:30
<LinearLayout
android:id="@+id/background"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1" />
<FrameLayout
android:id="@+id/detail_content_frame"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1" />
</LinearLayout>
2018-08-30 14:59:30 +05:30
</androidx.coordinatorlayout.widget.CoordinatorLayout>
2018-07-27 18:37:33 +05:30