我正在尝试将数据从我绑定SQLiteDatabase到ListView。我目前正在使用SimpleCursorAdapter来填写我的ListView。不幸的是,这似乎不适用于设置CheckBox的checked属性。
我现在就是这样做的。适配器没有将CheckBox的选中状态更改为文本值,而是将其填写到文本参数中,因此该值以文本形式显示在CheckBox的右侧。
Java:
setListAdapter( new SimpleCursorAdapter( this,
R.layout.mylist,
data,
new String[] { Datenbank.DB_STATE, Datenbank.DB_NAME },
new int[] { R.id.list_checkbox, R.id.list_text }
) );
mylist.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/LinearLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
>
<CheckBox android:text=""
android:id="@+id/list_checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="false"
></CheckBox>
<TextView android:text=""
android:id="@+id/list_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
></TextView>
</LinearLayout>
编辑:数据库中的字段当然是布尔型的,我也尝试过为已检查的字段分配ID以填充值。
慕桂英4014372
桃花长相依
阿晨1998
相关分类