Add play queue button to video details fragment

* Add play queue button to video details fragment

* Use existing ic_list icon

* Still open play queue even when queue is empty

* Change app:srcCompat to android:src
This commit is contained in:
HybridAU 2022-09-14 21:00:44 +08:00 committed by GitHub
parent df8b40619d
commit dcca274ecc
5 changed files with 30 additions and 1 deletions

View file

@ -698,6 +698,16 @@
android:paddingRight="@dimen/video_item_search_padding"
tools:ignore="RtlHardcoded">
<ImageButton
android:id="@+id/overlay_play_queue_button"
android:layout_width="40dp"
android:layout_height="match_parent"
android:background="?attr/selectableItemBackground"
android:padding="10dp"
android:scaleType="center"
android:src="@drawable/ic_list"
tools:ignore="ContentDescription,RtlHardcoded" />
<ImageButton
android:id="@+id/overlay_play_pause_button"
android:layout_width="40dp"

View file

@ -673,6 +673,16 @@
android:theme="@style/ContrastTintTheme"
tools:ignore="RtlHardcoded">
<ImageButton
android:id="@+id/overlay_play_queue_button"
android:layout_width="40dp"
android:layout_height="match_parent"
android:background="?attr/selectableItemBackground"
android:padding="10dp"
android:scaleType="center"
android:src="@drawable/ic_list"
tools:ignore="ContentDescription,RtlHardcoded" />
<ImageButton
android:id="@+id/overlay_play_pause_button"
android:layout_width="40dp"