first push

This commit is contained in:
2022-03-10 16:31:03 +02:00
commit ee2884b2ff
254 changed files with 21261 additions and 0 deletions

9
res/anim/alpha.xml Normal file
View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<set
xmlns:android="http://schemas.android.com/apk/res/android">
<alpha
android:fromAlpha="0.0"
android:startOffset="2000"
android:toAlpha="1.0"
android:duration="5000" />
</set>

9
res/anim/realpha.xml Normal file
View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<set
xmlns:android="http://schemas.android.com/apk/res/android">
<alpha
android:fromAlpha="1.0"
android:startOffset="2000"
android:toAlpha="0.0"
android:duration="5000" />
</set>