1
0
Fork 0
mirror of https://github.com/MatomoCamp/matomocamp-companion-android.git synced 2024-09-19 16:13:46 +02:00
matomocamp-companion-android/res/anim/zoom_out.xml

18 lines
516 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2014-01-09 00:59:12 +01:00
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<scale
2014-01-09 00:59:12 +01:00
android:duration="@android:integer/config_mediumAnimTime"
android:fromXScale="1.0"
android:fromYScale="1.0"
android:pivotX="50%"
android:pivotY="50%"
android:toXScale="0"
android:toYScale="0" />
<alpha
2014-01-09 00:59:12 +01:00
android:duration="@android:integer/config_mediumAnimTime"
android:fromAlpha="1.0"
android:toAlpha="0" />
</set>