I want to show an image at a time. On a swipe I want to change my image with sliding effect. I read about ViewPager and ViewFlipper. I even have an example of doing such with ViewFlipper. Just need a proper explanation on where to use ViewFlipper and where to use ViewPager. It seems to me as if ViewPager is more likely to be used when you want to swipe bunch of fragments which holds some functionality as well rather than just having some images to swipe.
However if some one thinks that ViewPager should be used instead of ViewFlipper just to swipe bunch of images, please briefly explain why? Why should a person use ViewPager instead of ViewFlipper. Which one should be more memory efficient? And whats the purpose of these two? Could you please illustrate an example (code) swiping imageViews?