在listview的edittext中输入的所有数字的总和
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在listview的edittext中输入的所有数字的总和相关的知识,希望对你有一定的参考价值。
我的活动中有一个listview,带有textview和inputType编号的edittext,用户将在每个编辑文本中输入数字。有一个textview显示输入的所有数字的总和。如何在用户输入金额后立即计算总和并在文本视图中显示。我这样试过:
holder.tvDonationAmount.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View view, boolean b) {
try {
amount = Integer.parseInt(holder.tvDonationAmount.getText().toString());
} catch (NumberFormatException e) {
e.printStackTrace();
}
addn_array.add(amount);
for (int j = 0; j < addn_array.size(); j++) {
try {
sum += addn_array.get(j);
} catch (NumberFormatException e) {
e.printStackTrace();
}
}
}
});
我尝试在将数字输入到整数的Arraylist之后添加每个元素并添加抛出错误的元素。
java.lang.NullPointerException: Attempt to invoke virtual method 'int java.lang.Integer.intValue()' on a null object reference
at the line inside for loop sum+ = . .
我也在我的Textwatcher中实现了这个
private TextWatcher watcher = new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
}
@Override
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
}
@Override
public void afterTextChanged(Editable editable) {
try {
amount = Integer.parseInt(holder.tvDonationAmount.getText().toString());
addn_array.add(amount);
} catch (NumberFormatException e) {
e.printStackTrace();
}
Toast.makeText(context, ""+addn_array.get(0), Toast.LENGTH_SHORT).show();
for (int j = 0; j <addn_array.size(); j++) {
try {
sum += addn_array.get(j);
Toast.makeText(context, ""+sum, Toast.LENGTH_SHORT).show();
} catch (NumberFormatException e) {
e.printStackTrace();
}
}
Toast.makeText(context, "" + sum, Toast.LENGTH_SHORT).show();
}
};`
它抛出了这个错误。
[![Logcat][1]][1]
你能告诉我这有什么问题吗?或者你可以建议任何更好的方法吗?
看看TextWatchers。您不需要焦点更改侦听器,而是TextWatcher,因为它会侦听您对EditText内部文本所做的更改。这是一个很好的例子:http://stacktips.com/tutorials/android/android-textwatcher-example
问题是,如果在解析NumberFormatException
时抛出amount
,amount
可以是null
。因此,null
被添加到列表中。
try {
amount = Integer.parseInt(holder.tvDonationAmount.getText().toString());
addn_array.add(amount);
} catch (NumberFormatException e) {
e.printStackTrace();
}
这将解决你的NullPointerException
。请使用像@GregorioPalamà建议的TextWatcher
。
以上是关于在listview的edittext中输入的所有数字的总和的主要内容,如果未能解决你的问题,请参考以下文章
listview中每个item都有一个edittext,怎么把用户输入edittext的值保存到数据库?
如何在自定义 ListView 中获取 EditText 的所有值
如何从 ListView 中的所有 EditText 中检索值