mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-22 18:05:28 +01:00
15 lines
512 B
XML
15 lines
512 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<animated-selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
<item
|
||
|
android:id="@+id/state_on"
|
||
|
android:drawable="@drawable/ic_artist"
|
||
|
android:state_checked="true" />
|
||
|
<item
|
||
|
android:id="@+id/state_off"
|
||
|
android:drawable="@drawable/ic_artist" />
|
||
|
<transition
|
||
|
android:drawable="@drawable/avd_artist"
|
||
|
android:fromId="@+id/state_off"
|
||
|
android:toId="@+id/state_on" />
|
||
|
|
||
|
</animated-selector>
|