This article describes the simple implementation method of background animation in Android development. Share it for your reference, as follows:
1. Create an animation layer first, with three pictures
<?xml version="1.0" encoding="utf-8"?> <animation-list xmlns:andro > <item android:drawable="@drawable/v_anim1" android:duration="300"> </item> <item android:drawable="@drawable/v_anim2" android:duration="300"> </item> <item android:drawable="@drawable/v_anim3" android:duration="300"> </item> </animation-list>
2. Use:
View viewanim = (.id_recorder_anim); (); AnimationDrawable drawable = (AnimationDrawable) (); ();
3. Stop:
if (()) { (); }
For more information about Android related content, please check out the topic of this site:Android development animation skills summary》、《Android development introduction and advanced tutorial》、《Android View View Tips Summary》、《Android programming activity operation skills summary》、《Android file operation skills summary》、《Android resource operation skills summary"and"Android control usage summary》
I hope this article will be helpful to everyone's Android programming design.