user1164429
user1164429

Reputation: 241

Changing focus from Button in ListView row to list item

I have a ListView with list items that have a Button on them. You can no longer select the list item, only the Button on the list item. How do you change the focus back to the list item?

Upvotes: 2

Views: 1964

Answers (1)

user
user

Reputation: 87064

For the Button in your list row layout add the attribute:

android:focusable="false"

Upvotes: 3

Related Questions