我想继续沿x方向移动图像

时间:2017-12-23 10:48:49

标签: android animation imageview

我想将图像从一端连续移动到另一端。但是我必须等到图像再到另一端。我想继续拍照。请帮我。 这是我的代码

    ObjectAnimator objectanimator1;
    objectanimator1 = ObjectAnimator.ofFloat(img1,"x",550);
    objectanimator1.setDuration(4000);
    objectanimator1.setRepeatCount(Animation.INFINITE);
    objectanimator1.start();

0 个答案:

没有答案