Created
February 13, 2019 07:24
-
-
Save kohendrix/6d62b06e6d9cafe7e4a967b746559358 to your computer and use it in GitHub Desktop.
Android Button Animation Sample
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"> | |
| <scale | |
| android:fromXScale="1.0" | |
| android:toXScale="0.6" | |
| android:fromYScale="1.0" | |
| android:toYScale="0.6" | |
| android:pivotX="50%" | |
| android:pivotY="50%" | |
| android:duration="300" | |
| android:repeatCount="1" | |
| android:repeatMode="reverse" | |
| android:fillAfter="true" /> | |
| <alpha | |
| android:duration="300" | |
| android:fromAlpha="1.0" | |
| android:toAlpha="0.1" | |
| android:repeatCount="1" | |
| android:repeatMode="reverse" | |
| android:fillAfter="true" /> | |
| <rotate | |
| android:duration="60" | |
| android:fromDegrees="-20" | |
| android:toDegrees="20" | |
| android:pivotX="50%" | |
| android:pivotY="50%" | |
| android:repeatCount="6" | |
| android:repeatMode="reverse" | |
| android:fillAfter="true" /> | |
| </set> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment