Skip to content

Instantly share code, notes, and snippets.

@natebass
Created November 19, 2014 22:54
Show Gist options
  • Save natebass/9fa000cbb2b627d0b66d to your computer and use it in GitHub Desktop.
Save natebass/9fa000cbb2b627d0b66d to your computer and use it in GitHub Desktop.
Shake Animation - Android
<?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="0.8"
android:fromYScale="1.0"
android:toYScale="1.2"
android:pivotX="50%"
android:pivotY="50%"
android:duration="100"
android:repeatCount="4"
android:repeatMode="reverse" />
</set>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment