PlayerAndroid/app/src/main/res/layout/fragment_library.xml

75 lines
3.0 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
xmlns:tools="http://schemas.android.com/tools"
2018-11-20 15:27:59 +00:00
android:id="@+id/main_fragment_content"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2018-08-08 08:03:38 +00:00
android:layout_height="match_parent"
android:orientation="vertical">
2018-07-27 13:07:33 +00:00
2018-08-22 17:54:07 +00:00
<FrameLayout
2018-09-09 19:44:46 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="0dp"
tools:ignore="UnusedAttribute">
<include layout="@layout/status_bar" />
</FrameLayout>
<androidx.coordinatorlayout.widget.CoordinatorLayout
2018-08-22 17:54:07 +00:00
android:id="@+id/coordinator_layout"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2018-09-09 19:44:46 +00:00
android:layout_height="match_parent">
2018-08-22 17:54:07 +00:00
2018-09-09 19:44:46 +00:00
<com.google.android.material.appbar.AppBarLayout
2018-12-08 03:34:15 +00:00
android:id="@+id/appBarLayout"
2018-08-08 08:03:38 +00:00
android:layout_width="match_parent"
2018-09-09 19:44:46 +00:00
android:layout_height="wrap_content"
android:elevation="0dp"
app:elevation="0dp">
2018-08-08 08:03:38 +00:00
2019-06-03 03:17:20 +00:00
<com.google.android.material.card.MaterialCardView
2019-06-22 17:44:21 +00:00
android:id="@+id/toolbarContainer"
2018-08-08 08:03:38 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-08-05 16:13:44 +00:00
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
2019-06-03 03:17:20 +00:00
app:cardCornerRadius="8dp"
2019-06-23 14:27:12 +00:00
app:cardElevation="0dp"
2019-06-03 03:17:20 +00:00
app:cardUseCompatPadding="true"
2019-06-22 17:44:21 +00:00
app:layout_scrollFlags="scroll|enterAlways"
2019-08-05 16:13:44 +00:00
app:strokeColor="?dividerColor"
2019-06-22 17:44:21 +00:00
app:strokeWidth="1dp">
2018-08-08 08:03:38 +00:00
2019-06-03 03:17:20 +00:00
<FrameLayout
2018-11-20 15:27:59 +00:00
android:layout_width="match_parent"
2019-06-03 03:17:20 +00:00
android:layout_height="wrap_content">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
style="@style/Toolbar"
2019-08-05 16:13:44 +00:00
app:title="@string/search_hint"
2019-06-03 03:17:20 +00:00
app:titleMarginStart="0dp"
2019-08-05 16:13:44 +00:00
app:titleTextAppearance="@style/TextAppearance.MaterialComponents.Body1"
2019-06-03 03:17:20 +00:00
tools:ignore="UnusedAttribute" />
<ViewStub
android:id="@+id/cab_stub"
android:layout_width="match_parent"
2019-07-22 15:26:37 +00:00
android:layout_height="48dp" />
2019-06-03 03:17:20 +00:00
</FrameLayout>
</com.google.android.material.card.MaterialCardView>
2018-09-09 19:44:46 +00:00
</com.google.android.material.appbar.AppBarLayout>
2018-08-10 17:10:43 +00:00
2018-09-09 19:44:46 +00:00
<FrameLayout
2018-12-08 03:34:15 +00:00
android:id="@+id/fragmentContainer"
2018-09-09 19:44:46 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@color/md_white_1000"
2019-05-11 13:53:20 +00:00
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
2018-07-27 13:07:33 +00:00
2018-09-09 19:44:46 +00:00
</androidx.coordinatorlayout.widget.CoordinatorLayout>
2018-07-27 13:07:33 +00:00
</LinearLayout>