|
|
|
@ -1,8 +1,47 @@
@@ -1,8 +1,47 @@
|
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto" |
|
|
|
|
xmlns:tools="http://schemas.android.com/tools" |
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:background="@color/surface" |
|
|
|
|
android:layout_height="wrap_content"> |
|
|
|
|
android:orientation="vertical"> |
|
|
|
|
|
|
|
|
|
<LinearLayout |
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:orientation="horizontal" |
|
|
|
|
android:paddingHorizontal="8dp" |
|
|
|
|
android:paddingVertical="4dp"> |
|
|
|
|
|
|
|
|
|
<Button |
|
|
|
|
android:id="@+id/queue_shuffle" |
|
|
|
|
style="@style/Widget.MaterialComponents.Button.OutlinedButton.Icon" |
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:layout_marginEnd="4dp" |
|
|
|
|
android:layout_weight="1" |
|
|
|
|
android:text="@string/playback_shuffle" |
|
|
|
|
android:textColor="@color/colorPrimary" |
|
|
|
|
android:textSize="12sp" |
|
|
|
|
app:icon="@drawable/shuffle" |
|
|
|
|
app:iconTint="@color/colorPrimary" |
|
|
|
|
app:rippleColor="@color/ripple" /> |
|
|
|
|
|
|
|
|
|
<Button |
|
|
|
|
android:id="@+id/queue_clear" |
|
|
|
|
style="@style/Widget.MaterialComponents.Button.OutlinedButton.Icon" |
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:layout_marginStart="4dp" |
|
|
|
|
android:layout_weight="1" |
|
|
|
|
android:text="@string/playback_queue_clear" |
|
|
|
|
android:textColor="@color/colorPrimary" |
|
|
|
|
android:textSize="12sp" |
|
|
|
|
app:icon="@drawable/delete" |
|
|
|
|
app:iconTint="@color/colorPrimary" |
|
|
|
|
app:rippleColor="@color/ripple" /> |
|
|
|
|
|
|
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView |
|
|
|
|
android:id="@+id/queue" |
|
|
|
@ -26,4 +65,4 @@
@@ -26,4 +65,4 @@
|
|
|
|
|
android:visibility="gone" |
|
|
|
|
tools:visibility="visible" /> |
|
|
|
|
|
|
|
|
|
</FrameLayout> |
|
|
|
|
</LinearLayout> |