Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android播放多張圖片形成的一個動畫示例

Android播放多張圖片形成的一個動畫示例

編輯:關於Android編程

本文實例講述了Android播放多張圖片形成的一個動畫。分享給大家供大家參考,具體如下:

在Android裡可以逐幀的播放圖片,然後產生一種動態的效果,准備好幾張連續的圖片,然後在於源程序res文件夾下建立anim文件夾,然後新建一個XML

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();//啟動

更多關於Android相關內容感興趣的讀者可查看本站專題:《Android圖形與圖像處理技巧總結》、《Android開發入門與進階教程》、《Android調試技巧與常見問題解決方法匯總》、《Android多媒體操作技巧匯總(音頻,視頻,錄音等)》、《Android基本組件用法總結》、《Android視圖View技巧總結》、《Android布局layout技巧總結》及《Android控件用法總結》

希望本文所述對大家Android程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved