標籤雲

搜尋此網誌

2012/10/15

利用 animation-list 做出類似 gif 檔的動畫效果

首先在 drawable 裡面建立一個 xml

<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
    android:oneshot="false" android:visible="true">
    <item android:duration="350" android:drawable="@drawable/frame01"/>
    <item android:duration="350" android:drawable="@drawable/frame02"/>
</animation-list>

root 標籤是 animation-list
注意到這邊有個屬性 android:oneshot
設為 false 表示要循環播放,否則設為 true 只會播放一次
然後把每一格的圖都放進去並指定 android:duration

接著把它指定給 ImageView 的 android:src 屬性就可以了
打完收工~

沒有留言: