在宽图像上设置动画ImageView

时间:2014-03-15 17:58:12

标签: java android animation android-imageview

我有非常宽的图像,我想要一个无限的动画,将ImageView移动到该图像上。例如,这是我的起点: enter image description here

我想让ImageView动画到这个观点: enter image description here]![enter image description here

依此类推,直到我的ImageView到达实际图像的末尾,然后它将返回到起点。

1 个答案:

答案 0 :(得分:0)

TranslateAnimation LefttoRight = new TranslateAnimation(0, width,0, 0);
LefttoRight.setDuration(700);
LefttoRight.setFillAfter(false);
image.startAnimation(LefttoRight);