我的 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>
我真的很想得到你的帮助!!