There are two ways to create animations:
I explored the later. Basically the code boils down to the following:
1- Create an animation template. For example the following can be used to rotate an imageview back and forth:
This file contains 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:shareInterpolator="true" android:ordering="sequentially"> | |
<rotate | |
android:fromDegrees="0" | |
android:toDegrees="30" | |
android:duration="500" | |
android:pivotX="50%" | |
android:pivotY="50%"> | |
</rotate> | |
<rotate | |
android:startOffset="500" | |
android:fromDegrees="30" | |
android:toDegrees="-30" | |
android:duration="1000" | |
android:pivotX="50%" | |
android:pivotY="50%"> | |
</rotate> | |
<rotate | |
android:startOffset="1500" | |
android:fromDegrees="-30" | |
android:toDegrees="0" | |
android:duration="500" | |
android:pivotX="50%" | |
android:pivotY="50%"> | |
</rotate> | |
</set> |
This file contains 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
final ImageView image = (ImageView) findViewById(R.id.imageview_to_animate); | |
Animation rotate = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.rotate_picture); | |
image.startAnimation(rotate); |
Read the README.md for more details.