我们知道逐帧动画是由多个图像制作的。图像来自可绘制文件夹。 喜欢这样:
<animation-list xmlns:android=
"http://schemas.android.com/apk/res/android"
android:oneshot="false">
<item android:drawable="@drawable/renew20001" android:duration="50" />
<item android:drawable="@drawable/renew20002" android:duration="50" />
<item android:drawable="@drawable/renew20003" android:duration="50" />
<item android:drawable="@drawable/renew20004" android:duration="50" />
<item android:drawable="@drawable/renew20005" android:duration="50" />
</animation-list>
现在我从特定网址获取图像并显示动画。是否可能? 如果是,那么提供解决方案。
答案 0 :(得分:0)
我不确定您是否能够从其他地方加载图像而不是可绘制文件夹 这是我煮熟的版本。
private static final int DELAY = 500;
Runnable changeImage = new Runnable() {
@Override
public void run() {
myImageView.setImageBitmap(getNewBitmap());
myImageView.postDelayed(changeImage, DELAY);
}
};
你在onResume
myImageView.postDelayed(changeImage, DELAY);