2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-09-12 01:28:33 +05:30
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout 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"
|
2021-09-16 18:29:31 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-08-08 13:33:38 +05:30
|
|
|
android:layout_height="match_parent"
|
2021-09-12 01:28:33 +05:30
|
|
|
android:fitsSystemWindows="true">
|
2018-08-08 13:33:38 +05:30
|
|
|
|
2022-01-20 19:55:56 +05:30
|
|
|
<code.name.monkey.retromusic.views.TopAppBarLayout
|
2021-09-12 01:28:33 +05:30
|
|
|
android:id="@+id/appBarLayout"
|
2022-01-20 19:55:56 +05:30
|
|
|
style="?appBarLayoutStyle"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
2021-09-12 01:28:33 +05:30
|
|
|
android:layout_height="wrap_content"
|
2022-01-20 19:55:56 +05:30
|
|
|
android:fitsSystemWindows="true" />
|
2020-09-28 00:29:09 +05:30
|
|
|
|
2021-09-12 01:28:33 +05:30
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipToPadding="false"
|
2021-12-13 12:01:26 +05:30
|
|
|
android:overScrollMode="@integer/overScrollMode"
|
2021-09-12 01:28:33 +05:30
|
|
|
android:paddingBottom="96dp"
|
|
|
|
android:scrollbars="none"
|
|
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"
|
|
|
|
tools:listitem="@layout/item_queue" />
|
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@android:id/empty"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:text="@string/empty"
|
|
|
|
android:textAppearance="@style/TextViewNormal"
|
|
|
|
android:textColor="?colorOnSecondary"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
|
|
|
android:id="@+id/clearQueue"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom|end"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:text="@string/clear_playing_queue"
|
|
|
|
android:textAppearance="@style/TextViewHeadline6"
|
|
|
|
app:icon="@drawable/ic_clear_all" />
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|