0

我怎样才能停止动画(我认为是 .stop() )。那么它应该是动画中出现静态的图片。第二张图片应该是显示的那张。

我怎么做?

这是 XML 动画列表:

 <?xml version="1.0" encoding="utf-8"?>
 <animation-list xmlns:android="http://schemas.android.com/apk/res/android" >
     <item android:drawable="@drawable/app" android:duration="1200"/>
 <item android:drawable="@drawable/app2" android:duration="250"/>
 </animation-list>
4

1 回答 1

0

经过几个小时的研究,我自己解决了这个问题。

Object tag = layout.getTag();
    int backgroundId = R.drawable.night;

    if( tag != null && ((Integer)tag).intValue() == backgroundId) {
        backgroundId = R.drawable.day;
        playAnimation();
    }
    else
    {
        animatedLoerg.selectDrawable(1);
        animatedLoerg.stop();
    }

    layout.setTag(backgroundId);
    layout.setBackgroundResource(backgroundId); 

用标签解决了。

于 2012-12-28T17:13:37.950 回答