Some information before making a decision:
- While in iOS
UIScrollView goes in both directions, android ScrollView just goes in one direction. - In Android, you have a
GridView , but again, I donβt think you can scroll both axes. - On Android, widgets that run as a
UITableView require an Adapter that takes care of creating each of the views.
If I were you, I would start reading:
- How androidbigimage project handles scrolling across the screen.
- How the
GridView positions its element in the grid and how it handles resizing the grid.
Once you get all this information, create a custom view that looks like a GridView , and start placing items using the Adapter .
PS: When you are done, make it open source :)
source share