20 lines
483 B
XML
20 lines
483 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<animated-selector xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<item
|
|
android:id="@+id/normal"
|
|
android:drawable="@drawable/ic_tools"
|
|
android:state_checked="false" />
|
|
|
|
<item
|
|
android:id="@+id/checked"
|
|
android:drawable="@drawable/ic_tools"
|
|
android:state_checked="true" />
|
|
|
|
<transition
|
|
android:drawable="@drawable/avd_tools_enter"
|
|
android:fromId="@id/normal"
|
|
android:toId="@id/checked" />
|
|
|
|
</animated-selector>
|