当前位置:操作系统 > 安卓/Android >>

android图片闪烁或帧动画

remote_recording_transition.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/remote_recording" android:duration="800"></item>  
    <item android:drawable="@drawable/remote_recording_run" android:duration="800"></item> 
</animation-list>  
 android:oneshot="false" 是否循环播放,flase是循环播放 true只播一次
android:duration="800" 间隔时间
java代码
private AnimationDrawable recordingTransition;
recording=(ImageView)findViewById(R.id.recording);
recording.setBackgroundResource(R.drawable.remote_recording_transition);
recordingTransition = (AnimationDrawable) recording.getBackground();
recordingTransition.start();
 
补充:移动开发 , Android ,
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,