码迷,mamicode.com
首页 > 移动开发 > 详细

第三十讲:Android之Animation(五)

时间:2014-11-04 13:17:03      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   io   color   ar   java   sp   

天行健,君子以自强不息。——《周易·乾·象》


本讲内容:逐帧动画 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;
		}
	}
}

下面是运行结果:

bubuko.com,布布扣


本讲到这里,谢谢大家!

第三十讲:Android之Animation(五)

标签:android   style   blog   http   io   color   ar   java   sp   

原文地址:http://blog.csdn.net/liguojin1230/article/details/40780887

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!