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-08-05 16:35:09 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-08-08 08:03:38 +00:00
|
|
|
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-12-04 15:34:26 +00:00
|
|
|
android:id="@+id/coordinatorLayout"
|
2018-08-08 08:03:38 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1">
|
2018-08-05 16:35:09 +00:00
|
|
|
|
2018-11-20 15:27:59 +00:00
|
|
|
|
2018-09-09 19:44:46 +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"
|
2018-09-09 19:44:46 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:elevation="0dp"
|
|
|
|
app:elevation="0dp">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2018-11-28 05:37:10 +00:00
|
|
|
<FrameLayout
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-11-20 15:27:59 +00:00
|
|
|
app:layout_scrollFlags="scroll|enterAlways">
|
2018-08-08 08:03:38 +00:00
|
|
|
|
2018-11-20 15:27:59 +00:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
2018-12-04 15:34:26 +00:00
|
|
|
style="@style/Toolbar"
|
2018-11-20 15:27:59 +00:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
app:layout_collapseMode="pin"
|
|
|
|
tools:ignore="UnusedAttribute">
|
2018-08-08 08:03:38 +00:00
|
|
|
|
2019-05-15 21:38:57 +00:00
|
|
|
<code.name.monkey.retromusic.views.CircularImageView
|
|
|
|
android:id="@+id/userImage"
|
|
|
|
android:layout_width="32dp"
|
|
|
|
android:layout_height="32dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginStart="14dp"
|
|
|
|
android:layout_weight="0"
|
|
|
|
app:civ_border="false" />
|
|
|
|
|
2018-12-04 15:34:26 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/bannerTitle"
|
2018-11-20 15:27:59 +00:00
|
|
|
style="@style/BigTitleTextAppearanceToolbar"
|
2019-05-15 18:45:42 +00:00
|
|
|
android:layout_gravity="start|center_vertical"
|
|
|
|
android:paddingStart="14dp"
|
|
|
|
android:paddingEnd="8dp"
|
2018-12-04 15:34:26 +00:00
|
|
|
android:text="@string/folders"
|
|
|
|
tools:ignore="MissingPrefix" />
|
2018-08-22 17:54:07 +00:00
|
|
|
|
2018-11-20 15:27:59 +00:00
|
|
|
</androidx.appcompat.widget.Toolbar>
|
2018-08-10 17:10:43 +00:00
|
|
|
|
2018-11-20 15:27:59 +00:00
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/cab_stub"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
2018-11-28 05:37:10 +00:00
|
|
|
</FrameLayout>
|
2018-09-09 19:44:46 +00:00
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2018-09-09 19:44:46 +00:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2018-09-09 19:44:46 +00:00
|
|
|
<com.simplecityapps.recyclerview_fastscroll.views.FastScrollRecyclerView
|
2018-12-04 15:34:26 +00:00
|
|
|
android:id="@+id/recyclerView"
|
2018-08-08 08:03:38 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-09-09 19:44:46 +00:00
|
|
|
android:clipToPadding="false"
|
|
|
|
android:layoutAnimation="@anim/layout_animation_fall_down"
|
|
|
|
android:scrollbars="none" />
|
2018-08-05 16:35:09 +00:00
|
|
|
|
2018-09-09 19:44:46 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@android:id/empty"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:text="@string/empty"
|
|
|
|
android:textColor="?android:textColorSecondary"
|
|
|
|
android:textSize="@dimen/empty_text_size" />
|
2018-08-05 16:35:09 +00:00
|
|
|
|
2018-09-09 19:44:46 +00:00
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
2018-08-05 16:35:09 +00:00
|
|
|
|
2018-08-08 08:03:38 +00:00
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="?dividerColor" />
|
2018-08-05 16:35:09 +00:00
|
|
|
|
2018-08-08 08:03:38 +00:00
|
|
|
<code.name.monkey.retromusic.views.BreadCrumbLayout
|
2018-12-04 15:34:26 +00:00
|
|
|
android:id="@+id/breadCrumbs"
|
2018-08-08 08:03:38 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/tab_height"
|
|
|
|
android:layout_weight="0"
|
|
|
|
android:elevation="6dp"
|
|
|
|
android:paddingStart="60dp"
|
|
|
|
android:paddingEnd="8dp" />
|
2018-07-27 13:07:33 +00:00
|
|
|
</LinearLayout>
|