onClick not triggered on LinearLayout with child

后端 未结 15 1063
生来不讨喜
生来不讨喜 2020-11-29 03:33

I\'ve got a custom LinearLayout with a smaller TextView child. I\'d like to be able to click the area not covered by the TextView, so I set clickable=true and an onclicklist

15条回答
  •  -上瘾入骨i
    2020-11-29 03:57

    Make Your parent LinearLayout's android:clickable="true"

    Make all of the the childview's android:clickable="false"

    Under Linearlayout - Remove android:inputType="" from TextView

提交回复
热议问题