Reputation: 621
I would like to ask if doing like this is possible on android: Scrollview of layouts, and each layout in horizontal orientation contains button, another button, and a checkbox.
For example:
button1, button2, checkbox
button1, button2, checkbox
.........
button1, button2, checkbox
Upvotes: 0
Views: 725
Reputation: 46844
Try using a ListView
with a SimpleAdapter
.
The SimpleAdapter
allows you to specify a layout
for each row in the ListView
.
This site has a simple example.
Upvotes: 3