Created
January 3, 2017 04:03
-
-
Save amannepid/021ace14a5627094026cd85eb46fbd2c to your computer and use it in GitHub Desktop.
Sample Animations Resources
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/linear_interpolator"> | |
<alpha | |
android:fromAlpha="1.0" | |
android:toAlpha="0.1" | |
android:duration="500" | |
android:repeatCount="1" | |
android:repeatMode="reverse" /> | |
</set> |
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/linear_interpolator"> | |
<rotate | |
android:fromDegrees="0" | |
android:toDegrees="360" | |
android:pivotX="50%" | |
android:pivotY="50%" | |
android:duration="500" | |
android:startOffset="0" | |
android:repeatCount="1" | |
android:repeatMode="reverse" /> | |
</set> |
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/linear_interpolator"> | |
<scale | |
android:fromXScale="1.0" | |
android:toXScale="3.0" | |
android:fromYScale="1.0" | |
android:toYScale="3.0" | |
android:pivotX="50%" | |
android:pivotY="50%" | |
android:duration="500" | |
android:repeatCount="1" | |
android:repeatMode="reverse" /> | |
</set> |
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/linear_interpolator"> | |
<translate | |
android:fromXDelta="0" | |
android:toXDelta="100%p" | |
android:duration="500" | |
android:repeatCount="1" | |
android:repeatMode="reverse"/> | |
</set> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment