views:

111

answers:

1

hello guys,

sorry for constant questions.

i would like to ask if doing smth like this is possible on android: Scrollview of layouts, and each layout in horizontal orientation contains button, another button and checkbox.

e.g: button1, button2, checkbox button1, button2, checkbox ......... button1, button2, checkbox

thank you!

+2  A: 

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.

Mayra
oh thanks, doing it now.
Bugzy bug