0

我的 ListView 有问题。我希望它包含与我的对象不同的值。我的对象 Item 有 4 个属性:

String name;
int number;
int price;
boolean check;

这是我的代码:

ArrayList<Item> list = new ArrayList<Item>();
list.add(new Item("hej", 1, 1, false));
list.add(new Item("farvel", 2, 2, true));
setListAdapter(new ArrayAdapter<Item>(this, R.layout.list_item, R.id.tv, list));

ListView lv = getListView();
lv.setTextFilterEnabled(true);

现在我希望将真/假链接到此 XML 中的复选框:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

<CheckBox
    android:id="@+id/cb"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

<TextView
    android:id="@+id/tv"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="10dp"
    android:textSize="16sp" >
</TextView>

</LinearLayout>

我真的很想得到你的帮助!!

4

1 回答 1

0

您需要创建自己的适配器来做到这一点。

基本上,您扩展适配器类之一并覆盖(根据需要)以下方法:

getCount
getItem
getItemId
getView

有几个指南/教程浮动:

所以问题

适配器教程 1

自定义 ArrayAdapter 示例

祝你好运!

于 2012-05-19T20:20:10.480 回答