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/partial_zoom_in.xml
Christophe Beyls a9c9c40a46 Added room images. They can be shown by clicking on the room name in
EventDetailsFragment. (+500KB apk file size)
2014-01-10 01:38:49 +01:00

18 lines
No EOL
524 B
XML

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<scale
android:duration="@android:integer/config_mediumAnimTime"
android:fromXScale="0.75"
android:fromYScale="0.75"
android:pivotX="50%"
android:pivotY="50%"
android:toXScale="1.0"
android:toYScale="1.0" />
<alpha
android:duration="@android:integer/config_mediumAnimTime"
android:fromAlpha="0.5"
android:toAlpha="1.0" />
</set>