ADD week 5

This commit is contained in:
2025-03-31 16:33:42 +02:00
parent 86f265f22d
commit bf645048e6
4927 changed files with 544053 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<animated-selector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:state_checked="true"
android:id="@+id/checked"
android:drawable="@drawable/mtrl_ic_checkbox_checked"/>
<item
android:id="@+id/indeterminate"
android:drawable="@drawable/mtrl_ic_checkbox_checked"
app:state_indeterminate="true"/>
<item
android:state_checked="false"
android:id="@+id/unchecked"
android:drawable="@drawable/mtrl_ic_checkbox_unchecked"/>
<transition
android:drawable="@drawable/mtrl_checkbox_button_checked_unchecked"
android:toId="@+id/unchecked"
android:fromId="@+id/checked"/>
<transition
android:drawable="@drawable/mtrl_checkbox_button_unchecked_checked"
android:toId="@+id/checked"
android:fromId="@+id/unchecked"/>
<transition
android:drawable="@drawable/mtrl_checkbox_button_checked_unchecked"
android:toId="@+id/unchecked"
android:fromId="@+id/indeterminate"/>
<transition
android:drawable="@drawable/mtrl_checkbox_button_unchecked_checked"
android:toId="@+id/indeterminate"
android:fromId="@+id/unchecked"/>
</animated-selector>