-4
所有的EditText在我的應用程序現在有10 EditText上,如果我在任何一個改變的EditText其加總,並顯示在 的TextView獲取陣列
,但我怎麼做用更少的代碼
或我做的一切EditText上OnChange事件所有的EditText
我嘗試使用TextWatcher觀看所有編輯文本,但我怎麼讓所有的EditText
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
}
};
plz幫助
但我的TextWatcher不能正常工作...... :( – Dharmeshsharma
告訴我你是如何使用textwatcher的......你可以參考這個鏈接:http://stackoverflow.com/questions/8543449/how-to -use-textwatcher-in-android –
謝謝我發現解決方案是我的錯誤。我不添加監聽器,所以這就是爲什麼不能正常工作。 – Dharmeshsharma