当item条目当中含有checkbox,或者按钮等操作的控件的时候,会失去焦点,导致无法点击
在item当中的checkbox控件或者button控件添加如下
<CheckBox
android:focusable="false"
android:clickable="false"
android:focusableInTouchMode="false"
android:button="@drawable/checkbox_select"
android:id="@+id/cb_choose"
android:layout_width="30dp"
android:layout_height="match_parent"/>
android:focusable="false"
android:clickable="false"
android:focusableInTouchMode="false"
博客指出当item条目包含checkbox、按钮等操作控件时,会失去焦点导致无法点击,并提到要在item的checkbox或button控件添加相关内容。
612

被折叠的 条评论
为什么被折叠?



