How to set checked / unverified CheckedTextView

I am creating a list of androids that populate the String array. I want to provide verified / unverified functionality using the Android CheckedTextView widget. so how could i do this? I googled using many key worlds, but could not find a suitable tutorial.

+4
source share
2 answers

I found you a good post that will help you

http://groups.google.com/group/android-developers/browse_thread/thread/3e6c3c11353f59dc?pli=1

basically, you call isItemChecked () on your list to determine if it is checked or not, and which element.

0
source

create an xml file and put a CheckedTextView in it, and then create your own ListView . Extending the ListView and inflating the same layout.

if you have apiDemos then you will find a class called List14.java that will help you create such a ListView

0
source

All Articles