Android Question listview or customview 2 colums

jchal

Active Member
Licensed User
Longtime User
how is it possible to have in listview or in customview to display bitmaps in two coums?
eg
bitmap1 | Bitmap2
Bitmap3| bitmap4
|
|
...........................
etc
 

mangojack

Expert
Licensed User
Longtime User
option 1.. use a Scrollview. Do calculations to position images accordingly.

Better
option 2.. Use CustomListView library. See above in 'Similar Threads'

In the Designer place 2 ImageViews together in a layout which is then loaded into the CLV .. loading images as you go.
If you don't want each 2 images in a separate row set Divider height to 0.
 
Upvote 0
Top