我想将图像从一端连续移动到另一端。但是我必须等到图像再到另一端。我想继续拍照。请帮我。 这是我的代码
ObjectAnimator objectanimator1;
objectanimator1 = ObjectAnimator.ofFloat(img1,"x",550);
objectanimator1.setDuration(4000);
objectanimator1.setRepeatCount(Animation.INFINITE);
objectanimator1.start();