I want to start the second animation list after the end of the first animation list. First animation list (list_first):
<?xml version="1.0" encoding="utf-8"?>
<item android:drawable="@drawable/f11" android:duration="500"/> <item android:drawable="@drawable/delay" android:duration="1000"/> <item android:drawable="@drawable/f12" android:duration="500"/> <item android:drawable="@drawable/delay" android:duration="1000"/> </animation-list>
Second animation list (list_second):
<?xml version="1.0" encoding="utf-8"?>
<item android:drawable="@drawable/s21" android:duration="500"/> <item android:drawable="@drawable/delay" android:duration="1000"/> <item android:drawable="@drawable/s22" android:duration="500"/> <item android:drawable="@drawable/delay" android:duration="1000"/> </animation-list>
now how to start the second animation list at the end of the first list?
ImageView img1; TextView t1; AnimationDrawable splashanimation; @Override protected void onCreate(Bundle savedInstanceState) {
Now I do not understand what to do? how to run the second animation list at the end of the first list. suggest
source share