1

我想在我的应用程序中使用动画,但它不应该从一开始就开始,而是从我设定的时间开始,热到实现那个?我的代码从动画开始工作:

ImageView someImage = (ImageView) findViewById(R.id.someImage);
Animation someAnimation = AnimationUtils.loadAnimation(this, R.anim.someAnimation);
someImage.startAnimation(someAnimation);
4

1 回答 1

1

您可以使用 设置时间Animation.setStartTime(),然后使用 将动画分配给视图View.setAnimation()

查看 developer.android 网站:http: //developer.android.com/guide/topics/graphics/view-animation.html

于 2013-08-27T11:07:00.550 回答