Android之中有 Obj 動畫 即 UI動畫 和 Image的Fragment動畫android
①Image動畫ide
將一系列圖片照順序 排列 組成一個序列展現動畫
XML文件存放路徑:
spares/anim/filename.xml
:
經過使用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()