-
-
Save eliagbenu/2813d4e7acc81ed44cf2 to your computer and use it in GitHub Desktop.
A simple shake / wiggle animation for Android
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"> | |
<rotate | |
android:duration="70" | |
android:fromDegrees="-5" | |
android:pivotX="50%" | |
android:pivotY="50%" | |
android:repeatCount="5" | |
android:repeatMode="reverse" | |
android:interpolator="@android:anim/linear_interpolator" | |
android:toDegrees="5" /> | |
<translate | |
android:fromXDelta="-10" | |
android:toXDelta="10" | |
android:repeatCount="5" | |
android:repeatMode="reverse" | |
android:interpolator="@android:anim/linear_interpolator" | |
android:duration="70" /> | |
</set> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment