码迷,mamicode.com
首页 > 其他好文 > 详细

34 帧动画

时间:2016-04-28 00:07:11      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

在res/anim目录下新建文件:

<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
    android:oneshot="true"><!--android:oneshot="true" 只播放一次 false循环播放-->
    <item android:drawable="@drawable/01" android:duration="50"/>
    <item android:drawable="@drawable/02" android:duration="50"/>
    <item android:drawable="@drawable/03" android:duration="50"/>
    <item android:drawable="@drawable/04" android:duration="50"/>
    <item android:drawable="@drawable/05" android:duration="50"/>
</animation-list>

在xml布局文件中给imageview的background设置这个xml

 

在代码文件中:

AnimationDrawable animation = (AnimationDrawable)iamgeView.getBackground();

帧动画需要手动启动和停止:

animation.start();

animation.stop();

34 帧动画

标签:

原文地址:http://www.cnblogs.com/YyuTtian/p/5440781.html

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