Android之AnimationDrawable简单模拟动态图
程序员文章站
2024-03-06 14:12:32
drawable animation可以加载drawable资源实现帧动画。animationdrawable是实现drawable animations的基本类。&nbs...
drawable animation可以加载drawable资源实现帧动画。animationdrawable是实现drawable animations的基本类。
这里用animationdrawable 简单模拟动态图的实现。
fragment_main 布局文件 ---- 只需要放一个 imageview即可
<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" tools:context="com.yztc.frameanimation.mainactivity" > <imageview android:id="@+id/iv_frame" android:layout_width="match_parent" android:layout_height="200dp" android:background="@drawable/girl_and_boy" /> </relativelayout>
girl_and_boy 布局文件 ---- 实现动画
推荐用xml文件的方法实现drawable动画,不推荐在代码中实现。这种xml文件存放在工程中res/drawable/目录下。xml文件的指令(即属性)为动画播放的顺序和时间间隔。
<?xml version="1.0" encoding="utf-8"?> <animation-list xmlns:android="http://schemas.android.com/apk/res/android" > <!-- onshot 属性表示动画只执行一次 --> <!-- duration 表示持续时间 --> <item android:drawable="@drawable/girl_1" android:duration="200"> </item> <item android:drawable="@drawable/girl_2" android:duration="200"> </item> <item android:drawable="@drawable/girl_3" android:duration="200"> </item> <item android:drawable="@drawable/girl_4" android:duration="200"> </item> <item android:drawable="@drawable/girl_5" android:duration="300"> </item> <item android:drawable="@drawable/girl_6" android:duration="400"> </item> <item android:drawable="@drawable/girl_7" android:duration="500"> </item> <item android:drawable="@drawable/girl_8" android:duration="400"> </item> <item android:drawable="@drawable/girl_9" android:duration="300"> </item> <item android:drawable="@drawable/girl_10" android:duration="200"> </item> <item android:drawable="@drawable/girl_11" android:duration="200"> </item> </animation-list>
mainactivity
package com.dragon.android.initgif; import android.app.activity; import android.graphics.drawable.animationdrawable; import android.os.bundle; import android.widget.imageview; public class mainactivity extends activity { @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.fragment_main); imageview ivframe = (imageview) findviewbyid(r.id.iv_frame); // 得到一个动画图片 animationdrawable background = (animationdrawable) ivframe .getbackground(); // 开始播放 background.start(); // 停止方法. // background.stop(); } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。