Tagged Questions

4
votes
2answers
9k views

Custom list clicking with checkboxes in Android

I've populated a ListActivity from a cursor using SimpleCursorAdapter that starts another activity when one of the list items have been clicked. I'm also using ViewBinder to do some custom ...
3
votes
4answers
227 views

Android How to know which check box is selected

I'm making my first Android application and I'm having a problem for which I can't find the answer anywhere on Google. I want a list of items with checkboxes. I want both the item itself and the ...
1
vote
2answers
466 views

CheckBox with SimpleCursorAdapter in ListActivity (ListView)

Hey all, I know there are a number of tutorials of implementing a custom adapter, but I am not convinced that this is right for me. I have a list view of a custom item layout consisting of two ...
1
vote
0answers
373 views

How to get proper view in ListActivity to set OnCheckedChangeListener for CheckBox widget in Android

I have a ListActivity which will display three widgets for each row. One of them is a checkbox. public class GroceryItems extends ListActivity { @Override protected void onCreate(Bundle ...
0
votes
3answers
794 views

Android listActivity onListItemClick with CheckBox

my question is how to access and change the checkBox mode for any item in a listactivity. I have an XML template file with a checkbox and a textview, and these define a row. Here's what I'm trying so ...
0
votes
1answer
231 views

Android: adding CheckBox to a ListAdapter

I'm wondering how to add (and control) a CheckBox field for my ListActivity's ListAdapter. Here is my code thus far which I use to set it up: @Override public void onCreate(Bundle ...
0
votes
1answer
368 views

How to use checkbox in listview (which have multilines in each list) and extends Listactivity?

this is my program which extends ListActivity and in each list I have multilines, picture and checkbox so I try like this public void onCreate(Bundle savedInstanceState) { ...
0
votes
1answer
332 views

checkboxes in the List randomly get checked/unchecked when i scroll through. android 2.3

I am using my custom adapter. There is a checkbox and a text view in each row. But i have a problem. There are more items in the list than the number which fits on the screen. So when i check any ...
0
votes
1answer
521 views

“Whack a checkbox” game with ListView

I have a ListActivity that was originally using an ArrayAdapter. Each item in my ListView contains a checkbox. I changed Adapters to a CursorAdapter. Everything is working fine except checkboxes ...