Solution for those who are looking for left to right animation)
TranslateAnimation animation = new TranslateAnimation(0.0f, 0.0f, 0.0f, 1500.0f);
animation.setDuration(1500);
animation.setRepeatCount(1);
animation.setFillAfter(false);
your_view .startAnimation(animation);
Solution for those who are looking for repeated animation(for eg. left to right and right to left)
TranslateAnimation animation = new TranslateAnimation(0.0f, 0.0f, 0.0f, 1500.0f);
animation.setDuration(1500);
animation.setRepeatCount(4);
animation.setRepeatMode(2);
animation.setFillAfter(true);
your_view .startAnimation(animation);
source
share