如何在Android中无限制地制作图像循环?

时间:2011-06-06 10:51:49

标签: android android-imageview

我希望这个问题很容易回答,我有2张相同形状和大小的图片,我希望它们在应用程序启动后无限循环从一个到另一个。它类似于动画gif,它们不会移动或旋转,只是反复循环,并且非常大(至少每秒超过10个循环)。一种以毫秒为单位调整速度的方法将是一个很大的优势。

1 个答案:

答案 0 :(得分:2)

尝试使用FrameAnimation。文档中有例子。

<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
    android:oneshot="false">
    <item android:drawable="@drawable/image1" android:duration="200" />
    <item android:drawable="@drawable/image2" android:duration="200" />
</animation-list>