帶有checkbox的listview的item onItemClick事件無響應問題
帶有checkbox的item,單擊時無響應,原來是因為checkbox的事件響應優先於listview,所以checkbox優先獲取了焦點。
導致listview獲取不到焦點,單擊事件就被遮蔽了。
解決辦法:遮蔽掉checkbox的焦點即可
<CheckBox android:layout_width="wrap_content" android:layout_height="wrap_content" android:button="@drawable/checkbox_selector" android:focusable="false" />