我正在使用ListView提供供用户选择的列表。
这是主要代码:
SimpleAdapter adapter = new SimpleAdapter(this,contacts, R.layout.list_contact,
from_contacts, to_contacts);
listview_selected_contact.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
listview_selected_contact.setAdapter(adapter);
我想知道为什么复选框没有显示? 程序运行正常,没有可见的复选框。 有人可以帮忙吗?
这是xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="TextView" android:textAppearance="?android:attr/textAppearanceMedium" android:id="@+id/username"></TextView>
</LinearLayout>
答案 0 :(得分:2)
看起来您的R.layout.list_contact不是CheckedTextView。
请参阅source of android.R.layout.simple_list_item_multiple_choice
我可以建议你构建自定义视图,它是任何ViewGroup类的子项和接口Checkable的实现者。
答案 1 :(得分:0)
checkBox
中的listView
和R.layout.list_contact
中的{{1}}的ID应具体。
请遵循ApiDemoes布局和java代码的多个List示例。