android 帧动画循环,Android 帧动画 AnimationDrawable 使用及注意事项

帧动画就像放幻灯片一样。创建的文件推荐存放在 res/drawable 目录下。

帧动画

语法

xmlns:android="http://schemas.android.com/apk/res/android"

android:oneshor="true" : true 表示只执行一次,false 表示循环执行

>

每一帧的动画资源

android:drawable="drawable name " : 资源文件

android:duration="1000" : 一帧显示多长时间

实例:循环播放几张图片

主页布局:

xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:app="http://schemas.android.com/apk/res-auto"

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

tools:context=".AnimDrawableActivity">

android:id="@+id/anim_drawable_iv"

android:layout_width="200dp"

android:layout_height="200dp"/>

动画文件:anim_drawable.xml

android:oneshot="false">

android:duration="200"/>

android:duration="200"/>

android:duration="200"/>

Java 中调用:

ImageView animDrawable = findViewById(R.id.anim_drawable_iv) ;

animDrawable.setBackgroundResource(R.drawable.anim_drawable);

AnimationDrawable animationDrawable = (AnimationDrawable) animDrawable.getBackground();

animationDrawable.start();

使用帧动画注意事项

AnimationDrawable 的start() 方法不能在activity的 onCreat() 中调用, 因为 AnimationDrawable 还未完全附着到window上, 所以最好的调用时机时在 Activity 的 onWindowFocusChange()方法中。onWindowFocusChange()方法在 Activity 生命周期中表示 view 的可视,onStart, onResume, onCreate 都不是真正 view visible 的时间点,真正的view visible时间点是 onWindowFocusChanged() 函数被执行时。通过下面的执行流程可以清楚了解到 AnimationDrawable 的使用时机。

启动:

onStart---->onResume---->

onAttachedToWindow------>

onWindowVisibilityChanged--visibility=0---------->

onWindowFocusChanged(true)------->

锁屏:

onPause---->onStop---->

onWindowFocusChanged(false)----------->(lockscreen)

进入下一个页面 :

onPause----->onWindowFocusChanged(false)------>

onWindowVisibilityChanged----visibility=8------------>

onStop(to another activity)

本文同步分享在 博客“_龙衣”(CSDN)。

如有侵权,请联系 [email protected] 删除。

本文参与“OSC源创计划”,欢迎正在阅读的你也加入,一起分享。

你可能感兴趣的:(android,帧动画循环)