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

88 lines
3.5 KiB
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?xml version="1.0" encoding="utf-8"?>
<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"
xmlns:tools="http://schemas.android.com/tools"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
2018-08-08 13:33:38 +05:30
android:layout_height="match_parent"
android:orientation="vertical">
2018-07-27 18:37:33 +05:30
2018-08-22 23:24:07 +05:30
<FrameLayout
android:id="@+id/coordinator_layout"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
2018-08-22 23:24:07 +05:30
android:layout_height="match_parent"
android:layout_weight="1">
<include layout="@layout/retro_backdrop" />
2018-07-27 18:37:33 +05:30
2018-08-22 23:24:07 +05:30
<LinearLayout
2018-08-08 13:33:38 +05:30
android:layout_width="match_parent"
2018-08-22 23:24:07 +05:30
android:layout_height="match_parent"
android:orientation="vertical">
2018-08-08 13:33:38 +05:30
2018-08-30 14:59:30 +05:30
<com.google.android.material.appbar.AppBarLayout
2018-08-22 23:24:07 +05:30
android:id="@+id/app_bar"
2018-08-08 13:33:38 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-08-22 23:24:07 +05:30
android:layout_weight="0"
android:elevation="0dp"
app:elevation="0dp">
2018-08-08 13:33:38 +05:30
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_collapseMode="pin">
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"
tools:ignore="UnusedAttribute">
2018-08-22 23:24:07 +05:30
<TextView
android:id="@+id/title"
fontPath="@string/circular_std_black"
android:layout_width="wrap_content"
2018-08-08 13:33:38 +05:30
android:layout_height="wrap_content"
2018-08-22 23:24:07 +05:30
android:layout_gravity="center"
android:gravity="center"
android:text="@string/app_name"
android:textAppearance="@style/TextAppearance.AppCompat.Large"
tools:ignore="MissingPrefix" />
2018-08-30 14:59:30 +05:30
</androidx.appcompat.widget.Toolbar>
2018-08-22 23:24:07 +05:30
<ViewStub
android:id="@+id/cab_stub"
android:layout_width="match_parent"
android:layout_height="48dp" />
2018-08-08 13:33:38 +05:30
</FrameLayout>
2018-08-30 14:59:30 +05:30
</com.google.android.material.appbar.AppBarLayout>
2018-08-10 22:40:43 +05:30
2018-08-22 23:24:07 +05:30
<FrameLayout
android:id="@+id/fragment_container"
2018-08-10 22:40:43 +05:30
android:layout_width="match_parent"
2018-08-22 23:24:07 +05:30
android:layout_height="match_parent"
android:layout_weight="1"
2018-08-30 14:59:30 +05:30
android:background="@color/md_white_1000"
2018-08-22 23:24:07 +05:30
android:elevation="@dimen/card_elevation"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</LinearLayout>
</FrameLayout>
2018-08-08 13:33:38 +05:30
2018-08-22 23:24:07 +05:30
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="?dividerColor" />
2018-07-27 18:37:33 +05:30
2018-08-30 14:59:30 +05:30
<com.google.android.material.bottomnavigation.BottomNavigationView
2018-08-22 23:24:07 +05:30
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
app:itemIconTint="@drawable/bottom_navigation_item_colors"
app:itemTextColor="@drawable/bottom_navigation_item_colors"
app:labelVisibilityMode="labeled"
app:menu="@menu/bottom_navigation_main"
tools:visibility="visible" />
2018-07-27 18:37:33 +05:30
</LinearLayout>