我在一个由SimpleAdapter填充的Activity(非ListActivity)中有一个ListView。
public void updateGroupsInfoPane(){
final ListView m_listview3 = (ListView) findViewById(R.id.memberOfList);
mapMemberOfList.clear();
for (String group : arrayAccountMemberOfList) {
Map<String, Object> datum = new HashMap<String, Object>(2);
String[] tempString = group.split(",");
datum.put("groupname", tempString[0]);
datum.put("groupdesc", tempString[1]);
mapMemberOfList.add(datum);
}
SimpleAdapter adapter = new SimpleAdapter(this, mapMemberOfList, R.layout.membersof_list, new String[] {"groupname", "groupdesc"}, new int[] {android.R.id.text1, android.R.id.text2});
m_listview3.setAdapter(adapter);
m_listview3.setChoiceMode(GridView.CHOICE_MODE_MULTIPLE);
m_listview3.setTextFilterEnabled(true);
m_listview3.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
CheckBox box = (CheckBox) view.findViewById(R.id.checkbox);
TextView text1 = (TextView) view.findViewById(android.R.id.text1);
String tempString = text1.getText().toString();
if (box.isChecked()){
box.setChecked(false);
listCurrentMembership.remove(tempString);
}else{
box.setChecked(true);
listCurrentMembership.add(tempString);
};
}
});
}
这很好用。问题是当我滚动这个列表时,复选框一旦离开屏幕就不能重新检查正确的那些,然后检查下一个滚动的项目。当我将数据加载到不同的数组中时,数据是正确的。只是复选框图形是错误的。如果我不滚动,检查和取消检查会添加并删除正确的数据。
搜索这个是因为回收ListView,我需要实现一个getView。
我一直在寻找一些关于如何使用SimpleAdapter的示例,因为有些帖子说SimpleAdapter已经使用了getView,而其他示例使用了ListActivity。然后我如何通过点击ListView项来检查框,而不是复选框本身可能与它有关?但我找不到一个类似于我正在做的事情的例子,以便我可以玩并解决这个问题。
ListView'memberof_list'中项目的我的XML是:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/vw1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<CheckBox android:id="@+id/checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_gravity="right"
android:focusable="false"
android:clickable="false"
android:checked="false" />
<LinearLayout
android:id="@+id/ll1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<TextView android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="?android:attr/listPreferredItemPaddingLeft"
android:layout_marginTop="8dip"
android:ellipsize="end"
android:textSize="8sp"
android:textStyle="bold"
android:singleLine="true"
/>
</LinearLayout>
<LinearLayout
android:id="@+id/ll2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_below="@+id/ll1"
>
<TextView android:id="@android:id/text2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="?android:attr/listPreferredItemPaddingLeft"
android:ellipsize="end"
android:textSize="6sp"
android:singleLine="true"
/>
</LinearLayout>
我只有一个数据数组,我清空了与ListView相关联的数组,因为我需要在加载新的/不同的数据之前清除它,我将数据拆分为逗号以将其加载到groupname和groupdesc中。默认情况下,复选框都是未选中状态,而且应该是这样的。
我是Android编程的新手,我知道它不是最干净或最有效的代码,但一旦它正在工作,我打算重新审视它并使其更好。
任何建议,链接和示例都很有价值。感谢。