I have a listView, where each row has a button in the row layout. However, this seems to make the row itself unclickable. How can I make both the button and row clickable?

Thanks.

link|improve this question

feedback

2 Answers

up vote 14 down vote accepted

You need to set itemsCanFocus on the list like this:

    mList.setItemsCanFocus(true);

To make the button clickable. Then you will need to use your own adapter and in getView return a view which is Clickable and focusable. You will also lose the default highlight states so you need to put them back in with the background resource. So do this:

    view.setClickable(true);
    view.setFocusable(true);
    view.setBackgroundResource(android.R.drawable.menuitem_background);

to your view before returning your view.

link|improve this answer
2  
Thank you very much. In addition I had to add an OnClickListener to the view. – gustavogb Jan 9 '11 at 16:03
Any idea how to get the highlight states of the holo themes that is used in lists by default? menuitem_background is orange but the default state should be blueish. – rndstr Jan 3 at 15:53
This doesn't work. The AdapterView.OnItemClickListener is never called. – Chloe Mar 25 at 9:15
I have the same question as @rndstr! Any help? – chrisonline Apr 29 at 13:56
feedback

Unfortunately I don't think that is possible. You ListView row can either have focusable widgets, like a button, or be clickable, not both. See link.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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