在Android中,可以使用ValueAnimator来创建动画,并且可以使用setDuration()方法来设置动画的持续时间。动画的速度取决于持续时间的长度。较长的持续时间会使动画看起来更慢,而较短的持续时间会使动画看起来更快。
下面是一个示例代码,演示了如何使用ValueAnimator来创建一个SeekBar的动画,其中动画持续时间为3秒:
SeekBar seekBar = findViewById(R.id.seekBar);
ValueAnimator animator = ValueAnimator.ofInt(0, 100);
animator.setDuration(3000);
animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
int progress = (int) animation.getAnimatedValue();
seekBar.setProgress(progress);
}
});
animator.start();
在上面的代码中,我们首先创建了一个ValueAnimator的实例,并使用ofInt()方法指定了动画的起始值和结束值。然后,我们使用setDuration()方法将动画的持续时间设置为3秒。
接下来,我们通过调用addUpdateListener()方法来注册一个动画更新的监听器。在监听器的onAnimationUpdate()回调方法中,我们可以获取动画的当前值,并将其设置为SeekBar的进度。
最后,我们调用animator.start()方法来启动动画。
通过调整setDuration()方法中的持续时间,您可以改变动画的速度。较长的持续时间会使动画看起来更慢,而较短的持续时间会使动画看起来更快。