mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-22 18:05:28 +01:00
15 lines
562 B
XML
15 lines
562 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_home_white_24dp"
|
||
|
android:state_checked="true" />
|
||
|
<item
|
||
|
android:id="@+id/state_off"
|
||
|
android:drawable="@drawable/ic_home_white_24dp" />
|
||
|
<transition
|
||
|
android:drawable="@drawable/avd_home"
|
||
|
android:fromId="@id/state_off"
|
||
|
android:toId="@id/state_on" />
|
||
|
</animated-selector>
|