
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<ImageView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/iv"
/>
</RelativeLayout>
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false" >
<item
android:drawable="@drawable/logo1"
android:duration="200"/>
<item
android:drawable="@drawable/logo2"
android:duration="200"/>
<item
android:drawable="@drawable/logo3"
android:duration="200"/>
</animation-list>
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ImageView iv=(ImageView)findViewById(R.id.iv);
iv.setBackgroundResource(R.drawable.stu_animation);
AnimationDrawable drawable=(AnimationDrawable) iv.getBackground();
drawable.start();
}
}