android - value / arrays.xml中的帧动画

时间:2011-07-15 03:49:24

标签: android

我有简单的动画

simple_anim.xml

<animation-list xmlns:android=”http://schemas.android.com/apk/res/android” id=”selected” android:oneshot=”false”>
<item android:drawable=”@drawable/frame1″ android:duration=”50″ />
<item android:drawable=”@drawable/frame2″ android:duration=”50″ />
</animation-list>

可以在value / arrays.xml

中创建帧动画
    <?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
    <array name="entries">
        <item>@drawable/simple_anim</item>      
        <item>@drawable/image2</item>       
        <item>@drawable/image3</item>       
        <item>@drawable/image4</item>
        <item>@drawable/image5</item>       
    </array>    
</resources>

1 个答案:

答案 0 :(得分:1)

技术上是的。但不会像使用第一个那样。您可以启动一个线程,在每次运行时显示阵列中的下一个图像资源。