Requirement:
I have a GridView
of thumbnails; the user can click on a thumbnail to view the larger, full sized image. This "full sized" image is to be fetched from a remote server. When the user is viewing a particular image he should be able to cycle through all of them by swiping his fingers on the screen(like leafing through pages of a book).
Questions:
1. What component should be used to display the larger version of the bitmap? I thought of using a ViewFlipper
as it only seems logical to me. But I haven't used it before and am not sure of how I will create a new View every time, dynamically and pass it to the Flipper. Any tutorial that exemplifies this would be great.
2. Is there any other way to approach this problem?
Thanks!