-
-
Save francosalcedo/655a71827a98bdeb17a68556dbe1a90e to your computer and use it in GitHub Desktop.
Simple efecto sacudir (shake) android studio
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