vote up 0 vote down star

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 transformation of the data.

I want to add a checkbox to each row in the list so I've changed the view and added a CheckBox with gravity right.

Adding the checkbox has removed the ability to click on the items. The onListItemClick method I was overriding in ListActivity is no longer called when you press on a list item. Removing the checkbox fixes this. Why is this?

Also, how can I set up the list so that it continues to perform my required functionality if the main part of the list item is clicked but have additional functionality when the checkbox in the item is checked? Will setting a onCheckedChangedListener work or is the same view instance reused for each item in the list?

flag

2 Answers

vote up 0 vote down check

Looks like SimpleCursorAdapter is too primitive for what I wanted to achieve. I've switched to implementing CursorAdapter and returning a new view using the LayoutInflater in my implementation of the newView method.

  public View newView(Context context, Cursor cursor, ViewGroup parent) {
    return LayoutInflater.from(context).inflate(R.layout.alarm_row, parent, false);
  }

In bindView I then set a custom OnClickListener to my main LinearLayout and then another OnCheckedChangeListener to the CheckBox.

For all this to look right I had to set the LinearLayout's background to android's menuitem drawable:

android:background="@android:drawable/menuitem_background"
link|flag
vote up 0 vote down

Any chance I could see the source for this? I'm having problems setting view content from the cursor.

Cheers

link|flag
If you have a question about these problems you're having you should post it as a new question. After all it doesn't answer this question, so no reason to post it as an answer. – sth Oct 21 at 2:45
But the question is still on list clicking in android. – Dawson Oct 21 at 13:39
You would just have better chances for answers if you posted it as a new question and included more details about the actual problems you're having. More people would look at it while nobody will see it here. Also this here would be the space for answers to Tom Martin's question, and your question doesn't really answer his question... – sth Oct 23 at 1:25

Your Answer

Get an OpenID
or

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