我有一個列表視圖由20個項目組成,使用android.R.layout.simple_list_item_multiple_choice作爲textview佈局,它使用CheckedTextView。我想選擇時要檢查的複選框,以實現:ListView啓用checkedTextView異常
public void onListItemClick(ListView parent, final View v, int pos, long id) {
((CheckedTextView) v).setChecked(true);
}
然而,當我做到這一點,不僅是被檢查的特定checkedtextview,但還要檢查其他幾個人。
之前嘗試過,但不知怎的,它顯示奇怪的行爲。即使在整個列表中有20個項目,getChildCount()返回9.所以,當我點擊第10或任何更大的項目,有一個空指針異常 – Arjun 2012-03-15 15:11:31