mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-22 18:05:28 +01:00
13 lines
469 B
XML
13 lines
469 B
XML
|
<animated-selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
<item
|
||
|
android:id="@+id/state_on"
|
||
|
android:drawable="@drawable/ic_guitar"
|
||
|
android:state_checked="true" />
|
||
|
<item
|
||
|
android:id="@+id/state_off"
|
||
|
android:drawable="@drawable/ic_guitar" />
|
||
|
<transition
|
||
|
android:drawable="@drawable/avd_guitar"
|
||
|
android:fromId="@id/state_off"
|
||
|
android:toId="@id/state_on" />
|
||
|
</animated-selector>
|