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

res-----不同图片实现动画效果(帧动画)

程序员文章站 2022-03-02 08:17:53
...

1、准备几张图片(可命名为a1-a6)

2、在drawable文件夹下新建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/a1"
        android:duration="50">
    </item>
    <item
        android:drawable="@drawable/a2"
        android:duration="50">
    </item>
    <item
        android:drawable="@drawable/a3"
        android:duration="50">
    </item>
    <item
        android:drawable="@drawable/a4"
        android:duration="50">
    </item>
    <item
        android:drawable="@drawable/a5"
        android:duration="50">
    </item>
    <item
        android:drawable="@drawable/a6"
        android:duration="50">
    </item>

</animation-list>

3、引用(可以写一个工具类)

/**
 * 帧动画
 */
fun drawableAnim(imageView: ImageView, drawableId: Int) {
    imageView.setBackgroundResource(drawableId)
    val mAnimationDrawable = imageView.getBackground() as AnimationDrawable
    mAnimationDrawable.start()
}
相关标签: 帧动画