List item with button not clickable anymore

后端 未结 6 1244
再見小時候
再見小時候 2021-02-02 12:23

I have a list item with a button inside.

When the button is shown, the list item is not clickable anymore. To make it clickable again, I have replaced the button with a

6条回答
  •  情深已故
    2021-02-02 13:00

    Set the following properties for you button

      android:focusable="false"
      android:focusableInTouchMode="false"
    

    For ImageButton, also add the following to the parent view

      android:descendantFocusability="blocksDescendants" 
    

提交回复
热议问题