Suppose I have multiple images in drawable folder(ex-8 images). I want to show all these images in a imageView one after another with left to right flip effect repeatedly(
Use ViewFlipper and add your ImageView
inside the ViewFlipper.
Layout file:
Then add below code in your activity.
ViewFlipper viewFlipper = (ViewFlipper)findViewById(R.id.flipperid);
and now you can start flipping the images automatically by calling viewFlipper.startFlipping();
Hope this will help you..