[android-developers] Re: Clickable ListView item with CheckBox

2008-11-04 Thread Romain Guy
If you have an item in ListView that is focusable or has a focusable child, then OnListItemClick is not fired. In this case you have to use the OnClickListener of the item or of its children. On Tue, Nov 4, 2008 at 5:43 PM, Chris McCurdy <[EMAIL PROTECTED]> wrote: > > I was looking at that code,

[android-developers] Re: Clickable ListView item with CheckBox

2008-11-04 Thread Chris McCurdy
I was looking at that code, and it doesn't look like it would allow me to select specific items in the ListView aside from setting the ratings per row. I'll give it a try later anyway. I actually tried to set a custom OnClickListener for the view that is returned from my custom ListAdapter, and i

[android-developers] Re: Clickable ListView item with CheckBox

2008-11-04 Thread Mark Murphy
Chris McCurdy wrote: > I have a ListView with a complex widget for displaying list items. It > has a CheckBox and several TextViews. I want to be able to handle > clicks to the CheckBox and be able to do the normal things on the list > item when anywhere that's not the CheckBox is clicked (e.g. co