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

60 lines
2.2 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
2018-08-30 09:29:30 +00:00
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-08-08 08:03:38 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2018-08-05 16:35:09 +00:00
android:layout_width="match_parent"
2018-08-22 17:54:07 +00:00
android:layout_height="match_parent">
2018-08-08 08:03:38 +00:00
2018-08-30 09:29:30 +00:00
<com.google.android.material.appbar.AppBarLayout
2018-12-04 15:34:26 +00:00
android:id="@+id/appBarLayout"
2018-08-08 08:03:38 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="0dp"
app:elevation="0dp">
2018-08-30 09:29:30 +00:00
<com.google.android.material.appbar.CollapsingToolbarLayout
2018-08-08 08:03:38 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:titleEnabled="false">
2018-08-30 09:29:30 +00:00
<androidx.appcompat.widget.Toolbar
2018-08-08 08:03:38 +00:00
android:id="@+id/toolbar"
2018-12-04 15:34:26 +00:00
style="@style/Toolbar"
2018-08-08 08:03:38 +00:00
app:layout_collapseMode="pin"
2018-11-13 03:30:08 +00:00
app:navigationIcon="@drawable/ic_keyboard_backspace_black_24dp"
app:title="">
2018-08-08 08:03:38 +00:00
<TextView
2018-12-04 15:34:26 +00:00
android:id="@+id/settingsTitle"
2018-08-22 17:54:07 +00:00
style="@style/BigTitleTextAppearance"
android:text="@string/action_settings" />
2018-08-08 08:03:38 +00:00
2018-08-30 09:29:30 +00:00
</androidx.appcompat.widget.Toolbar>
</com.google.android.material.appbar.CollapsingToolbarLayout>
2018-11-13 03:30:08 +00:00
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="?dividerColor" />
2018-08-30 09:29:30 +00:00
</com.google.android.material.appbar.AppBarLayout>
2018-08-08 08:03:38 +00:00
<LinearLayout
android:id="@+id/background"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<FrameLayout
2018-12-04 15:34:26 +00:00
android:id="@+id/contentFrame"
2018-08-08 08:03:38 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1" />
<FrameLayout
2018-12-04 15:34:26 +00:00
android:id="@+id/detailContentFrame"
2018-08-08 08:03:38 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1" />
</LinearLayout>
2018-08-30 09:29:30 +00:00
</androidx.coordinatorlayout.widget.CoordinatorLayout>
2018-07-27 13:07:33 +00:00