mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-24 10:55:20 +01:00
15 lines
580 B
XML
15 lines
580 B
XML
|
<animated-selector xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
tools:ignore="NewApi">
|
||
|
<item
|
||
|
android:id="@+id/state_on"
|
||
|
android:drawable="@drawable/ic_audiotrack_white_24dp"
|
||
|
android:state_checked="true" />
|
||
|
<item
|
||
|
android:id="@+id/state_off"
|
||
|
android:drawable="@drawable/ic_audiotrack_white_24dp" />
|
||
|
<transition
|
||
|
android:drawable="@drawable/avd_music_note"
|
||
|
android:fromId="@id/state_off"
|
||
|
android:toId="@id/state_on" />
|
||
|
</animated-selector>
|