TextWatcher可以帮助我在向下滚动可回收视图时保存这些值。但是当我想将用户最后输入的值存储在ArrayList中时。 在将值添加到ArrayList上时,将添加已输入到textView的所有值,但我只想要最后一个。请帮助我,我是android的新手,并且卡住了。
utils是我定义的一个类,其中有我要在其他地方访问的Qstrips ArrayList。
editstrip.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
@Override
public void afterTextChanged(Editable s) {
inputValuesStrips.put(p2strip, s.toString());
int t = 0;
try {
t = Integer.parseInt(s.toString());
} catch (NumberFormatException e) {
t = 0;
}
if (t <= stock.getStrips()) {
double cal = t * stock.getmrp();
TotalCost = TotalCost + cal;
utils.Qstrips.add(cal);
} else {
editstrip.setError("Only " + stock.getStrips() + " in one box!");
editstrip.requestFocus();
}
}
});