I am currently building out a list of rows with checkboxes dynamically using content from a web service. However, this ListView
will need to do pretty much what a
You need a ListView
for that, a PreferenceActivity
. As discussed in this link, PreferenceActivity
should only be used for actually saving preferences.
Instead you could either create a simple dialog with single or multiple choice options: http://developer.android.com/guide/topics/ui/dialogs.html
Or use a ListView
as in the API examples Google provides, they give a simple example:
http://hi-android.info/docs/resources/samples/ApiDemos/src/com/example/android/apis/view/List10.html