listview item with button not responding to onListItemClick

前端 未结 4 2086
我在风中等你
我在风中等你 2021-01-26 02:52

I am working on an app where the list item are complex, TextView and two ImageButtons. I have looked at the around for a solution, and tried all that I have seen, still nothing.

4条回答
  •  不要未来只要你来
    2021-01-26 03:41

    I think your ImageButton is stealing away the onItemClickLister event. Add this attribute to your layout

    android:descendantFocusability="blocksDescendants"

    
    
    

    Thanks

提交回复
热议问题