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

android AnimationDrawable类实现动画效果

时间:2014-08-18 16:18:42      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   color   java   os   io   

布局文件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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:background="#000000"
    tools:context=".MainActivity" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />
</RelativeLayout>

 

MainActivity.java

package com.playgif;

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

public class MainActivity extends Activity {

    ImageView imageView = null;
    AnimationDrawable animation = null;;
    
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        imageView = (ImageView)findViewById(R.id.imageView1);
        imageView.setBackgroundResource(R.drawable.img_list);
        animation = (AnimationDrawable)imageView.getBackground();
        //是否仅启动一次 
        animation.setOneShot(false);  
        if(animation.isRunning())
        {  
            animation.stop();//停止   
        }  
        animation.start();//启动 
        
    }
}

 

img_list.xml

<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:drawable="@drawable/a1" android:duration="100" />   
    <item android:drawable="@drawable/a2" android:duration="100" />   
    <item android:drawable="@drawable/a3" android:duration="100" />  
    <item android:drawable="@drawable/a4" android:duration="100" />  
    <item android:drawable="@drawable/a5" android:duration="100" />  
    <item android:drawable="@drawable/a6" android:duration="100" /> 
    <item android:drawable="@drawable/a7" android:duration="100" />   
    <item android:drawable="@drawable/a8" android:duration="100" />   
    <item android:drawable="@drawable/a9" android:duration="100" />  
    <item android:drawable="@drawable/a10" android:duration="100" />  
    <item android:drawable="@drawable/a11" android:duration="100" />  
    <item android:drawable="@drawable/a12" android:duration="100" /> 
</animation-list>

android:duration指的是延迟, 将要轮询播放的图片依次加入list列表。

 

android AnimationDrawable类实现动画效果,布布扣,bubuko.com

android AnimationDrawable类实现动画效果

标签:android   style   blog   http   color   java   os   io   

原文地址:http://www.cnblogs.com/sphere/p/3919671.html

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