欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  技术分享

android图片轮播动画_AnimationDrawable使用Demo_安卓动画例子

程序员文章站 2022-03-01 16:02:56
...

今天在项目中遇到了这样的需求、轮播图片来展示商品、另外这种功能也可以做 GIF类型的图片播放

Drawable animation可以加载Drawable资源实现帧动画、AnimationDrawable是实现Drawable animations的基本类

推荐用XML文件的方法实现Drawable动画,不推荐在代码中实现

这种XML文件存放在工程中res/drawable/目录下、XML文件的指令(即属性)为动画播放的顺序和时间间隔

在XML文件中<animation-list>元素为根节点,<item>节点定义了每一帧

表示一个drawable资源的帧和帧间隔、下面是一个XML文件的实例

存放图片资源的 XML

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

    <item
        android:drawable="@drawable/f01"
        android:duration="1000"/>
    <item
        android:drawable="@drawable/f02"
        android:duration="1000"/>

</animation-list>
一个展示图片 ImageView


<ImageView
        android:id="@+id/SplashImageView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:contentDescription="@string/app_name" />
控制图片播放的 Java 代码


final ImageView splashImageView = (ImageView)
		.findViewById(R.id.SplashImageView);
splashImageView.setBackgroundResource(R.drawable.flag);
final AnimationDrawable frameAnimation 
	= (AnimationDrawable) splashImageView
		.getBackground();
splashImageView.post(new Runnable() {
	@Override
	public void run() {
		frameAnimation.start();
	}
});
最后还是给大家献上源代码链接: http://dwtedx.com/download.html?bdkey=s/1eQIhpNO 密码: q4lf


注:该代码是 Android 4.4.2 下面创建的、需要引入 appcompat_v7 这个包哈