Android 图片的帧动画

Android之中有 Obj 动画 即 UI动画 和 Image的Fragment动画android

①Image动画ide

将一系列图片照顺序 排列 组成一个序列展现动画

       XML文件存放路径: res/anim/filename.xml:spa

   经过使用rescoure id进行访问code

<?xml version="1.0" encoding="utf-8"?>
<animation-listxmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false">
<itemandroid:drawable="@drawable/rocket_thrust1"android:duration="200"/>
<itemandroid:drawable="@drawable/rocket_thrust2"android:duration="200"/>
<itemandroid:drawable="@drawable/rocket_thrust3"android:duration="200"/>
</animation-list>

       使用动画:xml

       ImageView rocketImage =(ImageView) findViewById(R.id.rocket_p_w_picpath)图片

       rocketImage.setBackgroundResource(R.drawable.rocket_thrust);
utf-8

rocketAnimation =(AnimationDrawable) rocketImage.;
rocketAnimation
.;getBackground()start()
相关文章
相关标签/搜索