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

帧动画

程序员文章站 2022-03-01 20:53:57
...

帧动画

帧动画,就是多张图片,一张一张的切换,形成一种动画效果,类似于gif动画。

资源准备

创建一个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/startpage_loading_1"
        android:duration="100"/>
    <item
        android:drawable="@drawable/startpage_loading_2"
        android:duration="100"/>

</animation-list>
  • 这里只做了两张图片的切换,每张图片显示100毫秒,循环切换

使用方法

很简单,多啰嗦了,一看就懂

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:contentDescription="@string/app_name"
    android:src="@drawable/startpage_loading" />

效果就不演示了
补充一句,动画在Genymotion模拟器上运行没有动画效果,在真机上可以,其他模拟器没试过,也没啥意义,知道就行了。