通过AnimationDrawable实现android中的帧动画

在android中实现简单的帧动画,如在清理缓存的时候会出现的一扫一扫的动画,在这里我们实现一下,

首先,在xml中写出要显示的图片,和每张图片的播放间隔,其中是200毫秒,也就是0.2秒

<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android" >

    <item
        android:drawable="@drawable/broom_left"
        android:duration="200">
    </item>
    <item
        android:drawable="@drawable/broom_center"
        android:duration="200">
    </item>
    <item
        android:drawable="@drawable/broom_right"
        android:duration="200">
    </item>

</animation-list>

然后再布局文件里放一个view或者ImageView设置背景为上一个xml

<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"
   	android:background="#775566" >

    <ImageView
        android:id="@+id/im_animation"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:background="@drawable/broom_animation" />

</RelativeLayout>
之后再主函数里声明AnimationDrawable和imageview,接着在start一下AnimationDrawable至于AnimationDrawable的一些操作可以在网上查找一些

package com.example.deletcache;

import android.app.Activity;
import android.graphics.drawable.AnimationDrawable;
import android.os.Bundle;
import android.widget.ImageView;

public class MainActivity extends Activity {
	private AnimationDrawable animation;
	private ImageView img;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		initView();
	}

	private void initView() {
		// TODO Auto-generated method stub
		// animation = (AnimationDrawable) findViewById(R.id.im_animation);
		img = (ImageView) findViewById(R.id.im_animation);
		animation = (AnimationDrawable) img.getBackground();
		animation.start();
	}
}
其中的
animation = (AnimationDrawable) img.getBackground();
不要忘了


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值