我的活动中有多个(12)个 EditTexts,成对的 2 个。当其中的文本发生更改时,我想为每一对执行一个操作。我是否需要有 6 个不同的 TextWatchers,或者有没有办法将同一个 TextWatchers 用于或进行某种切换?
问问题
1920 次
2 回答
2
您可以将相同的TextWatcher手表附加到每个EditText。根据您需要做什么,您可能需要使用一些上下文创建TextWatcher的实现。
于 2011-02-27T01:14:45.680 回答
1
我需要这个,所以我做了一个可重复使用的......我扩展了 textwatcher 类,这样我就可以传递我想要观看的视图。
/**
*
* A TextWatcher which can be reused
*
*/
public class ReusableTextWatcher implements TextWatcher {
private TextView view;
// view represents the view you want to watch. Should inherit from
// TextView
private GenericTextWatcher(View view) {
if (view instanceof TextView)
this.view = (TextView) view;
else
throw new ClassCastException(
"view must be an instance Of TextView");
}
@Override
public void beforeTextChanged(CharSequence charSequence, int i,
int before, int after) {
}
@Override
public void onTextChanged(CharSequence charSequence, int i, int before,
int count) {
int id = view.getId();
if (id == R.id.someview){
//do the stuff you need to do for this particular view
}
if (id == R.id.someotherview){
//do the stuff you need to do for this other particular view
}
}
@Override
public void afterTextChanged(Editable editable) {
}
}
然后使用它我做这样的事情来注册它:
myEditText.addTextChangedListener(new ReusableTextWatcher(myEditText));
于 2014-05-08T00:19:02.703 回答