Created
July 10, 2015 05:42
-
-
Save Krishan14sharma/69919f8d0174ae8b55e5 to your computer and use it in GitHub Desktop.
anim
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <set xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:interpolator="@android:anim/decelerate_interpolator" | |
| android:zAdjustment="bottom"> | |
| <scale | |
| android:duration="@android:integer/config_mediumAnimTime" | |
| android:fromXScale="1.0" | |
| android:fromYScale="1.0" | |
| android:pivotX="50%p" | |
| android:pivotY="50%p" | |
| android:toXScale=".75" | |
| android:toYScale=".75" /> | |
| <alpha | |
| android:duration="@android:integer/config_mediumAnimTime" | |
| android:fromAlpha="1.0" | |
| android:toAlpha="0.75" /> | |
| </set> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment