12

由于某种原因 setItemChecked 不起作用。有人可以帮我修 ti 吗?

String[] str = getResources().getStringArray(R.array.brush_type);
sizeArrayAdapter = new ArrayAdapter<String>(this.getContext(), R.layout.drawing_list_item, str);

listType = SIZE_LIST;
listView.setAdapter(sizeArrayAdapter);

// Populate the listView
listView.setItemChecked(4,true);

这是列表项:

<CheckedTextView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/drawingCheckedTextView"
        android:layout_width="fill_parent"
        android:layout_height="?android:attr/listPreferredItemHeight"
        android:gravity="center_vertical"
        android:checkMark="?android:attr/listChoiceIndicatorSingle"
        android:background="@drawable/list_panel"
        android:paddingLeft="6dip"
        android:paddingRight="6dip"/>

请帮我。

4

1 回答 1

16

文档是这样说的:

设置指定位置的选中状态。如果选择模式已设置为Choice_Mode_single或Choice_Mode_Multiple,则仅有效。

所以你可以试试:

list.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);

打电话之前setItemChecked

于 2011-03-14T20:16:09.080 回答