我有一个自定义ListView
,ListView
的每个项目都包含两个EditTexts
。
例如,当我将EditText
的值放在ListView
的第一项中时,之后我向下滚动到ListView
的末尾,我看到ListView
的最后一项自动填充,当我向上滚动时,第一个项目会丢失其值。
注意:在这种情况下我使用TextWatcher
。
我该怎么做才能解决这个问题?
这是我的适配器:
public class MyResultAdapter extends ArrayAdapter<Integer> {
ArrayList<HashMap<String, String>> boardInformation = new ArrayList<>();
EditText foodPrice;
EditText foodName;
Context context;
int layoutView;
public MyResultAdapter(Context context, int layoutView) {
super(context, layoutView);
this.context = context;
this.layoutView = layoutView;
}
public View getView(int position, View convertView, ViewGroup parent){
View view = convertView;
boolean convertViewWasNull = false;
if(view == null)
{
view = LayoutInflater.from(getContext()).inflate(layoutView, parent, false);
convertViewWasNull = true;
}
foodPrice = (EditText) view.findViewById(R.id.food_price);
foodName = (EditText) view.findViewById(R.id.food_name);
if(convertViewWasNull )
{
//be aware that you shouldn't do this for each call on getView, just once by listItem when convertView is null
foodPrice.addTextChangedListener(new GenericTextWatcher(foodPrice, position, "price"));
foodName.addTextChangedListener(new GenericTextWatcher(foodName, position, "name"));
}
return view;
}
private class GenericTextWatcher implements TextWatcher{
private View view;
private int position;
private String name;
private GenericTextWatcher(View view, int position, String name) {
this.view = view;
this.position = position;
this.name = name;
}
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 editable)
{
updateBoardInformationArray(editable.toString());
}
private void updateBoardInformationArray(String newValue)
{
if(name.equals("name")) boardInformation.get(position).put("food_name", newValue);
else boardInformation.get(position).put("food_price", newValue);
}
}
}
答案 0 :(得分:0)
我假设您知道您正在使用ListView
重新使用convertView
中的视图 - 重复使用屏幕上显示的相同视图进入屏幕。
我看到列表视图的最后一项是自动填充的
这可能是因为该视图已在您在EditText
中输入了一些文字的其他视图中重复使用。
当我向上滚动时,第一个项目会丢失其值。
与上述相同的原因。其他一些观点正在这个位置上重复使用。
解决方案:
将用户输入的文本保存在某些模型对象的列表中。例如,像ArrayList<MyData>
一样。 MyData
对象具有键入的文本。列表中列表中的每个项目都有一个对象。
现在在getView
回调中,从ArrayList<MyData>
获取相应位置的文字并将其设置为EditText
。