我正在使用ListView來提供一個供用戶選擇的列表。帶有複選框的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>
我認爲這是因爲您提供了自己的佈局。告訴我們你的layout.xml –
是的,我上傳它。 –