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

84 lines
3.3 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-11-20 20:57:59 +05:30
android:id="@+id/main_fragment_content"
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
2018-09-10 01:14:46 +05:30
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 23:24:07 +05:30
android:id="@+id/coordinator_layout"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
2018-09-10 01:14:46 +05:30
android:layout_height="match_parent">
2018-08-22 23:24:07 +05:30
2018-09-10 01:14:46 +05:30
<com.google.android.material.appbar.AppBarLayout
2018-12-08 09:04:15 +05:30
android:id="@+id/appBarLayout"
2018-08-08 13:33:38 +05:30
android:layout_width="match_parent"
2018-09-10 01:14:46 +05:30
android:layout_height="wrap_content"
android:elevation="0dp"
app:elevation="0dp">
2018-08-08 13:33:38 +05:30
2018-11-28 11:07:10 +05:30
<FrameLayout
2018-08-08 13:33:38 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-11-20 20:57:59 +05:30
app:layout_scrollFlags="scroll|enterAlways">
2018-08-08 13:33:38 +05:30
2019-05-11 19:23:20 +05:30
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
style="@style/Toolbar"
app:layout_collapseMode="pin"
tools:ignore="UnusedAttribute">
2018-08-22 23:24:07 +05:30
2019-05-20 00:09:56 +05:30
<code.name.monkey.retromusic.views.UserImageView
2018-12-25 20:28:47 +05:30
android:id="@+id/userImage"
android:layout_width="32dp"
android:layout_height="32dp"
2019-05-11 19:23:20 +05:30
android:layout_gravity="center_vertical"
android:layout_marginStart="14dp"
2018-12-25 20:28:47 +05:30
android:layout_weight="0"
2019-05-20 00:09:56 +05:30
android:background="@android:color/transparent"
app:civ_border="false"
app:civ_border_width="0dp"
app:civ_shadow="false" />
2019-03-25 18:13:43 +05:30
<TextView
android:id="@+id/bannerTitle"
style="@style/BigTitleTextAppearanceToolbar"
android:layout_gravity="start|center_vertical"
android:paddingStart="14dp"
2019-05-16 00:15:42 +05:30
android:paddingEnd="8dp"
android:text="@string/library"
android:textColor="@color/md_white_1000"
tools:ignore="MissingPrefix" />
2019-05-11 19:23:20 +05:30
</androidx.appcompat.widget.Toolbar>
2018-08-22 23:24:07 +05:30
2018-11-20 20:57:59 +05:30
<ViewStub
android:id="@+id/cab_stub"
android:layout_width="match_parent"
android:layout_height="match_parent" />
2018-11-28 11:07:10 +05:30
</FrameLayout>
2018-09-10 01:14:46 +05:30
</com.google.android.material.appbar.AppBarLayout>
2018-08-10 22:40:43 +05:30
2018-09-10 01:14:46 +05:30
<FrameLayout
2018-12-08 09:04:15 +05:30
android:id="@+id/fragmentContainer"
2018-09-10 01:14:46 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@color/md_white_1000"
2019-05-11 19:23:20 +05:30
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
2018-07-27 18:37:33 +05:30
2018-09-10 01:14:46 +05:30
</androidx.coordinatorlayout.widget.CoordinatorLayout>
2018-07-27 18:37:33 +05:30
</LinearLayout>