mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-29 04:55:23 +00:00
23 lines
693 B
XML
23 lines
693 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<animated-selector xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<item
|
|
android:id="@+id/checked"
|
|
android:drawable="@drawable/ic_home_filled_md2"
|
|
android:state_checked="true" />
|
|
|
|
<item
|
|
android:id="@+id/unchecked"
|
|
android:drawable="@drawable/ic_home_outlined_md2" />
|
|
|
|
<transition
|
|
android:drawable="@drawable/avd_home_from_filled"
|
|
android:fromId="@+id/checked"
|
|
android:toId="@+id/unchecked" />
|
|
|
|
<transition
|
|
android:drawable="@drawable/avd_home_to_filled"
|
|
android:fromId="@+id/unchecked"
|
|
android:toId="@id/checked" />
|
|
|
|
</animated-selector> |