
Android Drawable Animation
In this tutorial you will learn how to animate Image set by using Android AnimationDrawable
loading.xml
res/anim/loading.xml
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/voipemLoading"
android:oneshot="false" >
<item
android:drawable="@drawable/loading_01"
android:duration="300"/>...