List item with CheckBox not clickable

前端 未结 9 1858
误落风尘
误落风尘 2020-12-31 01:12

I have a list item which contains a CheckBox, and I want to be able to click on the CheckBox and on the list item itself. Unfortunately, there seems to be some sort of confl

相关标签:
9条回答
  • 2020-12-31 01:58

    Have you tried setting

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

    ?

    It worked for me.

    0 讨论(0)
  • 2020-12-31 02:01

    This did the work for me

    <CheckBox
    ...                
    android:focusable="false"
    android:clickable="false"
    android:focusableInTouchMode="false" />
    
    0 讨论(0)
  • 2020-12-31 02:02

    by using android:descendantFocusability="blocksDescendants" its working fine

    0 讨论(0)
提交回复
热议问题