gpt4 book ai didi

android - ListView setItemChecked 不起作用

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:59:37 26 4
gpt4 key购买 nike

由于某些原因,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"/>

请帮助我。

最佳答案

docs这么说:

Sets the checked state of the specified position. The is only valid if the choice mode has been set to CHOICE_MODE_SINGLE or CHOICE_MODE_MULTIPLE.

所以你可以试试:

list.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);

在调用 setItemChecked 之前。

关于android - ListView setItemChecked 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5303502/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com