我为Listview中的每个项目制作了一个自定义Listview
(没有覆盖getView()
方法),其中包含以下布局
contactlayout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent" android:weightSum="1">
<CheckBox android:id="@+id/checkBox1" android:text="CheckBox" android:layout_width="134dp" android:layout_height="108dp" android:focusable="false"></CheckBox>
<LinearLayout android:id="@+id/linearLayout1" android:layout_height="match_parent" android:orientation="vertical" android:layout_width="87dp" android:layout_weight="0.84" android:weightSum="1" >
<TextView android:text="TextView" android:layout_height="wrap_content" android:layout_width="match_parent" android:id="@+id/name" android:layout_weight="0.03"></TextView>
<TextView android:text="TextView" android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/phone"></TextView>
<TextView android:text="TextView" android:layout_height="wrap_content" android:layout_weight="0.03" android:layout_width="match_parent" android:id="@+id/contactid" android:visibility="invisible"></TextView>
</LinearLayout>
</LinearLayout>
我使用Listview
以下列方式填充SimpleCursorAdapter
...
Cursor c = getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null,null,null, ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME);
String from[] = new String[]{ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME,ContactsContract.CommonDataKinds.Phone.NUMBER,ContactsContract.CommonDataKinds.Phone.CONTACT_ID};
int to[] = new int[]{R.id.name,R.id.phone,R.id.contactid};
SimpleCursorAdapter s = new SimpleCursorAdapter(this,R.layout.contactlayout,c,from,to);
lv.setAdapter(s);
单击按钮我正在读取所有复选框的状态。问题是,如果我检查一个CheckBox
其他几个,那么该行就会自动检查。我知道这是重用Views。我该如何避免呢?在这种情况下,我甚至没有覆盖getView()
方法,所以我想知道是否仍有任何方法可以实现我想要的目标?
答案
最后我实现了@sastraxi建议的内容......
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view = super.getView(position, convertView, parent);
final CheckBox checkBox = (CheckBox) view.findViewById(R.id.checkBox1);
final TextView name = (TextView) view.findViewById(R.id.name);
final TextView contactId = (TextView) view.findViewById(R.id.contactid);
final int pos = position;
checkBox.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
if(checkBox.isChecked())
{
checkList.add(String.valueOf(pos));
nameList.add(name.getText().toString());
contactList.add(contactId.getText().toString());
Log.i("Chk added",String.valueOf(pos));
}
else
{
checkList.remove(String.valueOf(pos));
nameList.remove(name.getText().toString());
contactList.remove(contactId.getText().toString());
Log.i("Un Chk removed",String.valueOf(pos));
}
}
});
if(checkList.contains(String.valueOf(pos)))
{
checkBox.setChecked(true);
}
else
{
checkBox.setChecked(false);
}
return view;
}
答案 0 :(得分:6)
另一种强制不重用视图的方法,在游标适配器中添加以下内容:
@Override
public int getItemViewType(int position) {
return position;
}
@Override
public int getViewTypeCount() {
return 500;
}
但是,您应尽可能重复使用视图。在我的特定情况下,我正在向我的视图添加图像,而不强制不重用视图,它们将在重用的视图中重新呈现。
答案 1 :(得分:3)
啊,我明白了问题所在。
制作一个扩展SimpleCursorAdapter
的新课程,比如说CheckboxSimpleCursorAdapter
,然后覆盖getView
:
public View getView(int position, View convertView, ViewGroup parent) {
View view = super.getView(position, convertView, parent);
CheckBox checkBox = (CheckBox) view.findViewById(R.id.CheckBox1);
checkBox.setChecked(getIsThisListPositionChecked(position));
return view;
}
由于您没有使用顶层View
实现Checkable
的布局,因此您必须自己完成所有操作。这包括清除状态(在这种情况下),因为默认实现重新使用了被检查的View
- 正如您正确的直觉。
编辑:使用此新代码,并实现一个protected boolean getIsThisListPositionChecked(int position)
方法,该方法返回当前是否检查该项目(或类似的东西)。我希望我足够清楚 - 您需要确定是否应该根据您的模型检查项目 ,然后在创建{{ 1}}。
答案 2 :(得分:2)
重新使用视图总是更好。您尝试实现的目标可以通过代码中的一些调整来完成。您需要使用另一个变量列表(每个列表项的布尔值)记录复选框的选中性。
答案 3 :(得分:1)
在Adapter类中重写这两个方法
@Override
public int getViewTypeCount()
{
return getCount();
}
@Override
public int getItemViewType(int position)
{
return position;
}