我有一个充满自定义类扩展 BaseAdapter 的 listView
private List<Bundle> allTipologiaInsetti = ....;
listView.setAdapter(new CustumAdapter(getBaseContext(), allTipologiaInsetti, this));
然后在我的适配器上..
public class CustumAdapter extends BaseAdapter {
public CustumAdapter (Context context, List<Bundle> items, RaccoltaDatiQuestions activity) {
// TODO Auto-generated constructor stub
this.context = context;
this.items = items;
//update
map = new HashMap<Number, String>();
}
...
public View getView(final int position, View convertView, ViewGroup parent) {
Bundle myObj = items.get(position);
ViewHolder holder;
view = convertView;
if (view == null ) {
holder = new ViewHolder();
view = inflater.inflate(R.layout.tipologia_insetti_item, null);
holder.campoNum = (EditText) view.findViewById(R.id.numField);
view.setTag(holder);
} else {
holder = (ViewHolder) view.getTag();
}
//UPDATE
String num = map.get(position);
if(num!=null && !num.equals("")){
holder.campoNum.setText(num + "");
}else {
holder.campoNum.setText(myObj.getInt("num") + "");
}
holder.campoNum.addTextChangedListener(new GenericTextWatcher(holder.campoNum, position));
}
public GenericTextWatcher(EditText campNum, int position) {
this.position = position;
this.campoNum = campNum;
}
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) { }
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) { }
public void afterTextChanged(Editable s) {
if (campoNum.getText().length() > 0) {
if (campoNum.getText().hashCode() == s.hashCode()) {
Bundle myObj = items.get(position);
myObj.putInt("num", Integer.parseInt(s.toString()));
//UPDATE
map.put(position, s.toString());
}
}
}
}
"campoNum" 是一个编辑文本:
我在列表的第一项上更改了“campoNum”的值(并且效果很好),但是如果我向下滚动,列表的其他一些项目,保持第一项的相同值....
我尝试分析它,我发现:
如果我在列表中有 3 个项目可见,并且我更改了第一个项目,则第 5 个将采用与第一个相同的值,如果我有 4 个可见的项目,如果我更改第一个,也会更改第 6 个......等等。
如果我删除“if (view == null)”并且每次都让视图膨胀,问题就解决了!
如果我很好理解:每次隐藏列表的一项(第一项)时,它将用于新出现的项(第五项),并且第五项传递的 convertVIew 与第一项相同
有什么建议么?