第三十讲:Android之Animation(五)
天行健,君子以自强不息。——《周易·乾·象》
本讲内容:逐帧动画 Frame Animation
逐帧动画 Frame Animation就是说一帧一帧的连起来播放就变成了动画,和放电影的机制很相似。
我们通过一个例子感受一下,代码的讲解都写在注释里了
下面是res/layout/activity_main.xml
布局文件:
<LinearLayout 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" android:orientation="vertical" tools:context="com.example.text.MainActivity$PlaceholderFragment" > <ImageView android:id="@+id/frame_image" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1"/> <Button android:id="@+id/start" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="runFrame"/> <Button android:id="@+id/stop" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="stopFrame"/> </LinearLayout>
下面是新建的res/anim/frame.xml文件
<?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/b1" android:duration="300" /> <item android:drawable="@drawable/b2" android:duration="300" /> <item android:drawable="@drawable/b3" android:duration="300" /> <item android:drawable="@drawable/b4" android:duration="300" /> </animation-list>
b1、b2、b3、
b4是四张不同小狐狸图标
下面是MainActivity.java主界面文件:
public class MainActivity extends Activity implements OnClickListener { private Button start; private Button stop; private ImageView iv; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); iv = (ImageView) findViewById(R.id.frame_image); start = (Button) findViewById(R.id.start); stop = (Button) findViewById(R.id.stop); start.setOnClickListener(this); stop.setOnClickListener(this); iv.setBackgroundResource(R.anim.frame); } @Override public void onClick(View v) { AnimationDrawable anim = (AnimationDrawable) iv.getBackground(); switch (v.getId()) { case R.id.start: // 调用动画可画对象的开始播放方法 anim.start(); break; case R.id.stop: // 调用动画可画对象的停止播放方法 anim.stop(); break; } } }
下面是运行结果:
本讲到这里,谢谢大家!
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。