1. 程式人生 > >android播放多張圖片形成動畫 (幀動畫)

android播放多張圖片形成動畫 (幀動畫)

andriod裡可以逐幀的播放圖片,然後產生一種動態的效果,準備好幾張連續的圖片,然後在於源程式res資料夾下建立anim資料夾,然後新建一個XML: 複製內容到剪貼簿
程式碼:

<?xml version="1.0" encoding="utf-8"?>   
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"    
android:oneshot="true">    
<item android:drawable="@drawable/c1" android:duration="200" />    
<item android:drawable="@drawable/c2" android:duration="200" />    
<item android:drawable="@drawable/c3" android:duration="200" />   
<item android:drawable="@drawable/c4" android:duration="200" />   
<item android:drawable="@drawable/c5" android:duration="200" />   
<item android:drawable="@drawable/c6" android:duration="200" />   
</animation-list>  
其中c1,c2,c3,c4,c5,c6是加入的圖片的名稱。
在窗體裡面放置一個ImageView控制元件,並在程式碼中編寫:
_imageView1 =(ImageView)findViewById(R.id.imageView1);//放置的ImageView控制元件
//設定動畫背景 

_imageView1.setBackgroundResource(R.anim.animation_list);//其中R.anim.animation_list就是上一步準備的動畫描述檔案的資源名 


//獲得動畫物件 

_animaition = (AnimationDrawable)_imageView1.getBackground();   

最後,就可以啟動動畫了,程式碼如下:   

//是否僅僅啟動一次? 

_animaition.setOneShot(false);   

if(_animaition.isRunning())//是否正在執行? 

{   
_animaition.stop();//停止 

}   

_animaition.start();//啟動

來自:http://bbs.51cto.com/thread-990032-1-1.html