mirror of
https://github.com/gabehf/tempus.git
synced 2026-03-10 07:50:34 -07:00
52 lines
2.4 KiB
XML
52 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<com.cappielloantonio.tempo.helper.recyclerview.NestedScrollableHost
|
|
android:id="@+id/player_queue_nested_scrollable_recycler_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:paddingTop="8dp"
|
|
android:paddingBottom="@dimen/global_padding_bottom">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/player_queue_recycler_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical" />
|
|
|
|
<TextView
|
|
android:id="@+id/player_clean_queue_button"
|
|
style="@style/TitleMedium"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:layout_marginTop="24dp"
|
|
android:text="@string/player_queue_clean_all_button"/>
|
|
|
|
</LinearLayout>
|
|
</androidx.core.widget.NestedScrollView>
|
|
</com.cappielloantonio.tempo.helper.recyclerview.NestedScrollableHost>
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
android:id="@+id/player_shuffle_queue_fab"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom|end"
|
|
android:layout_margin="16dp"
|
|
android:contentDescription="@string/content_description_shuffle_button"
|
|
app:layout_behavior="com.google.android.material.behavior.HideBottomViewOnScrollBehavior"
|
|
app:srcCompat="@drawable/ic_shuffle" />
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|