16

有没有办法Animation暂停半秒?

我正在尝试使用TranslateAnimationAPI 制作无限动画。所以,我使用RepeatCountas Infinite。我还注意到有一种setStartOffset(...)方法可以解决我想要延迟启动动画的情况。但是,我找不到在每次“重新启动”之前延迟的方法。由于动画会无限次发生,所以每次动画重新启动时我都需要延迟。

有任何想法吗?

谢谢!!

4

3 回答 3

12

这是一个例子:

首先是带有我们想要动画的图像的布局(main.xml):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_launcher" />

</LinearLayout>

下一个是动画。放置在 res/anim 中,名为 anim_img.xml。该文件包含 android:startOffset="500"(以毫秒为单位)的翻译动画。这将设置每次动画开始时使用的偏移量:

<?xml version="1.0" encoding="utf-8"?>
<set>

    <translate
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:duration="1000"
        android:fromXDelta="0%"
        android:fromYDelta="0%"
        android:toXDelta="0%"
        android:toYDelta="100%"
        android:zAdjustment="top" 
        android:repeatCount="infinite"
        android:startOffset="500"/>

</set>

最后但并非最不重要的 - 活动。启动动画:

public class StackOverflowActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        ImageView iv_icon = (ImageView) findViewById(R.id.imageView1);

        Animation a = AnimationUtils.loadAnimation(this, R.anim.anim_img);
        a.setFillAfter(true);
        a.reset();

        iv_icon.startAnimation(a);
    }
}
于 2012-06-29T20:50:28.420 回答
9

要在每次重启之间实现 x 毫秒的暂停:

myAnimation.setAnimationListener(new AnimationListener(){

        @Override
        public void onAnimationStart(Animation arg0) {
        }
        @Override
        public void onAnimationEnd(Animation animation) {
        }

        @Override
        public void onAnimationRepeat(Animation animation) {
            myAnimation.setStartOffset(x);
        }

    });
于 2013-02-12T21:18:01.163 回答
0

myanimation.setStartDelay(int);

于 2013-10-03T01:25:01.453 回答