如果我在任何一个编辑文本中更改它的总和并显示在 Textview 中,我的应用程序中现在有 10 个 EditText
但是我如何使用更少的代码
或者我为所有 EditText 处理所有 EditText Onchange 事件
我尝试使用 TextWatcher 观看所有编辑文本,但我如何获得所有编辑文本
private TextWatcher filterTextWatcher = new TextWatcher() {
public void afterTextChanged(Editable s) {
//Do your stuff
String text;
}
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// do your stuff
}
public void onTextChanged(CharSequence s, int start, int before,
int count) {
// do your stuff
}
};
请帮助