ListView - is this a good way

canalrun

Well-Known Member
Licensed User
Longtime User
Hi,
I need a list of items that each include a checkbox and then one or two lines of text.

I was thinking the ListView two lines plus bitmap would be the way to go. Depending on whether the item is checked or unchecked I would show a checked or unchecked bitmap. if the user clicks the item, I would reverse the checked / unchecked state and modify the list item to show the alternate bitmap. The two lines of text would hold the item description.

Is this a good way to do this or is there a better way?

Barry.
 
Last edited:

Rioven

Active Member
Licensed User
Longtime User
SrollView instead

canalrun,
You can easily implement that using ScrollView instead of listview.
Look at this ScrollView Samples.
Use the principle of the 7th sample(Another scrollview sample), i.e. you will have a sub-panel to contain views of each rows.
 
Upvote 0
Top