I need to create a very small ListView. Each row could have a different element floated on the right. For example, the top row will have a checkbox and the last row will have a disclosure arrow. It’s pretty similar to the ListView that the Settings app has, where each row has a different accessory.
Row 1 []
-------------
Row 2 123
-------------
Row 3 abc
-------------
Row 4 >
I don’t think I can use a ListAdapter because it forces the rows to be homogenous. And since I’m only gong to have 4 rows, I’d rather just manually write the XML for each row. I couldn’t find out what the child rows of ListViews are called. On iPhone, the UITableViewCell is the child of UITableView. On Android, I did not find such a ListViewCell or ListViewRow.
You can use TableLayout..
Instead of EditText you can use component like checkbox. with the id of corresponding checkbox you can perform process according to you.. I think it may help you..