2019-10-10 19:08:15 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-01-17 00:40:16 +08:00
|
|
|
<animated-selector xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/checked"
|
|
|
|
android:drawable="@drawable/ic_superuser_filled_md2"
|
|
|
|
android:state_checked="true" />
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/unchecked"
|
|
|
|
android:drawable="@drawable/ic_superuser_outlined_md2" />
|
|
|
|
|
|
|
|
<transition
|
|
|
|
android:drawable="@drawable/avd_superuser_from_filled"
|
|
|
|
android:fromId="@+id/checked"
|
|
|
|
android:toId="@+id/unchecked" />
|
|
|
|
|
|
|
|
<transition
|
|
|
|
android:drawable="@drawable/avd_superuser_to_filled"
|
|
|
|
android:fromId="@+id/unchecked"
|
|
|
|
android:toId="@id/checked" />
|
|
|
|
|
|
|
|
</animated-selector>
|