how can I implement a image gallery in table layout?
I would like to implement a gallery like Facebook does with Photos on my android app, I mean, show all pictures into an ScrollView or a Ta开发者_运维问答bleLayout. I tried Gallery, but it just shows a row with three thumbnails and I want the full screen with thumbnails. Thank you.
What you want is a GridView
with a custom Adapter
. Here is an example.
Check grid view, that will be that what you need, in android you can also make small thumbnails from big picture. In grid view you have to specify some information check this
精彩评论