listview的item分別實現item的點選和checkbox的點選
阿新 • • 發佈:2019-02-16
問題:listview的item上新增一個CheckBox,這樣能分別實現item的點選和checkbox的點選嗎?現在我想只點擊checkbox就只改變checkbox的狀態,點選item的話就跳到另一個頁面 ,checkbox的狀態不改變
方法:
<CheckBox
android:id="@+id/group_selection_all"
android:layout_width="40dip"
android:layout_height="40dip"
android:layout_gravity="center_vertical"
android:layout_marginLeft="8dip"
android:layout_marginRight="0dip"
android:focusable="false"
android:clickable="true"
android:gravity="center"
android:scaleType="centerInside"/>
設定CheckBox 的屬性: android:focusable="false" android:clickable="true"