My application should have an activity to show a list of elements. These elements can be selected using some checkbox mechanism AND if it is clicked another list on next screen with the sub elements should be shown. Need desperate help. link to snippet would be preferable. thanx.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Create two activities extending from ListActivity. Check this link to create a listActivity and implement click listener for list items and on click event start second activity...

link|improve this answer
for checkboxes, you can create a custom view and inflate each List item row to that view... Alternatively you can use builtin list provided by android... check the id's in android.R.id. used in creating an adapter. check here: developer.android.com/reference/android/app/ListActivity.html – Farhan Mar 28 '11 at 8:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.