This is simple example which rotate frame by frame , just you need to create each rotate image ans play one by one. http://developer.android.com/guide/topics/graphics/drawable-animation.html 1.Create animated drawable. <animation-list xmlns:android = " http://schemas.android.com/apk/res/android " android:oneshot = "true" > <item android:drawable = "@drawable/rocket_thrust1" android:duration = "200" /> <item android:drawable = "@drawable/rocket_thrust2" android:duration = "200" /> <item android:drawable = "@drawable/rocket_thrust3" android:duration = "200" /> </animation-list> 2. AnimationDrawable rocketAnimation ; public void onCreate ( Bundle savedInstanceState ) { super . onCreate ( savedInstanceState ); setContentView ( R . layout . main ); ImageView rocketImage = ( ImageView ) findViewById ( R . id . rocket_ima...
Blog completely focused on android question-answer.