-Modified selected play queue item to highlight entire item instead of text.
-Added selected item bullet. -Modified play queue panel darker on main video player. -Fixed color issue on play queue panel on light-themed main video player. -Fixed hold-to-enqueue tooltip flashing when clicked on earlier sdk versions. -Fixed queue item removal causing metadata for currently playing to refresh.
This commit is contained in:
parent
86c16fa5d8
commit
b0948cf9fc
23 changed files with 65 additions and 29 deletions
5
app/src/main/res/drawable/dark_selector.xml
Normal file
5
app/src/main/res/drawable/dark_selector.xml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_selected="true" android:drawable="@color/selected_background_color"/>
|
||||
<item android:drawable="@color/transparent_background_color"/>
|
||||
</selector>
|
||||
5
app/src/main/res/drawable/light_selector.xml
Normal file
5
app/src/main/res/drawable/light_selector.xml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_selected="true" android:drawable="@color/selected_background_color"/>
|
||||
<item android:drawable="@color/transparent_background_color"/>
|
||||
</selector>
|
||||
Loading…
Add table
Add a link
Reference in a new issue