i want to get the name of the checkboxes clicked and store the names of these checkboxes in a database(sqlite)

Go To StackoverFlow.com

0

i want to create a custom list view in which it should contain checkboxes.Onclicking the checkboxes i want to get the name of the checkboxes clicked and store the names of these checkboxes in a database(sqlite).Can anyone help be to jump this riddle???

2012-04-04 03:48
by Sanal Varghese
Do you have any code? Best place to start is http://developer.android.com/resources/tutorials/hello-world.htm - Phil 2012-04-04 04:44


0

Create a Custome ListAdapter something like this.. but one single change is you need to tag the converTview with the CheckBox using setTag().. and in ListView's click listener just say view.getTag() which will give you checkBox..then say checkBox.getText()

2012-04-04 03:58
by ngesh
Ads