mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-21 09:25:21 +01:00
Fixed Lyrics icon not updating for Full & Gradient theme
This commit is contained in:
parent
48950922fb
commit
1c50903f5c
6 changed files with 43 additions and 57 deletions
5
app/src/main/res/drawable/sld_lyrics.xml
Normal file
5
app/src/main/res/drawable/sld_lyrics.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:drawable="@drawable/ic_lyrics" android:state_checked="true" />
|
||||
<item android:drawable="@drawable/ic_lyrics_outline" />
|
||||
</selector>
|
|
@ -4,16 +4,16 @@
|
|||
<item
|
||||
android:id="@+id/action_toggle_lyrics"
|
||||
android:checkable="true"
|
||||
android:icon="@drawable/ic_lyrics_outline"
|
||||
android:icon="@drawable/sld_lyrics"
|
||||
android:orderInCategory="1"
|
||||
android:title="@string/lyrics"
|
||||
app:showAsAction="always" />
|
||||
<item
|
||||
android:id="@+id/action_toggle_favorite"
|
||||
android:checkable="true"
|
||||
android:icon="@drawable/ic_favorite"
|
||||
android:orderInCategory="2"
|
||||
android:title="@string/favorites"
|
||||
android:checkable="true"
|
||||
app:showAsAction="always" />
|
||||
<item
|
||||
android:id="@+id/now_playing"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue