0

我有一个简单的 .xml 布局文件,它有一个简单的 ImageView,我想打开图像。我决定继续使用 FrameAnimations,使用 AnimationDrawable API。

我设法在“drawable/file.xml”中创建了我的动画文件,代码如下:

<?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/image_010_1" android:duration="1000" />
    <item android:drawable="@drawable/image_010_2" android:duration="1000" />
</animation-list>

现在,这是应该开始我的动画的代码:

Image1.setBackgroundResource(R.drawable.image_010);
AnimationDrawable animation = (AnimationDrawable) Image1.getBackground();
animation.start();

出于某种原因,当我运行该应用程序时,我只看到第一帧,而下一个图像不在 1000 英里之后出现,或者根本没有出现!我究竟做错了什么?谢谢!

4

1 回答 1

0

所以我设法通过添加一个 Runnable 来解决这个问题ImageView

    image.post(new Runnable() {

        @Override
        public void run() {
            // TODO Auto-generated method stub
            animation.start();
        }
    });
于 2013-05-23T16:48:27.160 回答