I need to make an ImageView slide from left to right of the screen with a smooth animation (I want the ImageView to be visible during the transition) I
ImageView
TranslateAnimation animate = new TranslateAnimation(0, -view.getWidth(), 0, 0); animate.setDuration(500); animate.setFillAfter(true); view.startAnimation(animate);