我的问题是:-我想将 ListView 的所有 EditText 值存储到 ArrayList中。
在我的应用程序中,我Custom ListView
使用 row as EditText
。只需考虑listview
有 20 行。
当我做这个任务时,我首先遇到了滚动问题ListView
(这意味着值EditText
被弄乱了。(其他地方)),但幸运的是解决了它。
现在我想将所有值存储到ArrayList<String>
.
是的,我还在我的适配器中编写了代码。但是在将该列表设置为外部使用时出现异常 NullPointer 。
此外,我从不想在 getView 中设置 ArrayList(导致视图回收时出现问题)
我知道 Exception 因为TextWatcher Listener
. 那么应该有什么替代方法。此外,我从来没有任何用于保存数据的按钮。只想存储值,因为值会一一出现在 ListView 的 EditText 中。
这是我的适配器类:-
public class MyAdapter extends ArrayAdapter<String>
{
private LayoutInflater mInflater;
public ArrayList<String> _values;
ArrayList<String> data;
Model model;
public MyAdapter(Context context,int res,ArrayList<String> obj) {
super(context,res,obj);
mInflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
_values=new ArrayList<String>();
model=new Model();
this.data=obj;
}
public View getView(int position, View convertView, ViewGroup parent) {
final ViewHolder holder;
if (convertView == null) {
convertView = mInflater.inflate(R.layout.listview, null);
holder = new ViewHolder();
holder.caption = (EditText) convertView.findViewById(R.id.editText1);
holder.tv=(TextView)convertView.findViewById(R.id.textView1);
holder.tv.setText(data.get(position));
} else {
holder = (ViewHolder) convertView.getTag();
holder.tv.setText(data.get(position));
}
holder.caption.addTextChangedListener(new TextWatcher()
{
public void afterTextChanged(Editable edt)
{
_values.add(edt.toString());
}
public void beforeTextChanged(CharSequence arg0, int arg1, int arg2, int arg3) {}
public void onTextChanged(CharSequence arg0, int arg1, int arg2, int arg3) { }
});
convertView.setTag(holder);
holder.ref=position;
holder.caption.setText(_values.get(position));
model.setData(_values);//here getting exception
return convertView;
}
}
class ViewHolder {
EditText caption;
TextView tv;
int ref;
}
这是我为外部目的使用的关于该字符串的模型类
public class Model
{
ArrayList<String> data;
public ArrayList<String> getData() {
return data;
}
public void setData(ArrayList<String> data) {
this.data = data;
for(String str : data)
Log.v("data=", str);
}
}