Questions tagged «textwatcher»


8
Android EditText onchange侦听器
我知道一点点,TextWatcher但这会触发您输入的每个字符。我希望在用户完成编辑时触发一个监听器。可能吗?另外,TextWatcher我得到的实例,Editable但我需要的实例EditText。我怎么得到的? 编辑:第二个问题更重要。请回答。

10
如何在Android中使用TextWatcher类?
谁能告诉我如何掩盖子中EditText或如何改变EditText 串输入密码类型或更换另一个字符这样123xxxxxxxxx3455 String contents = et1.getText().toString(); et1.setText(contents.replace.substring(0, contents.length()-2),"*"); 请告诉我如何TextWatcher在Android中使用该方法。

15
TextWatcher用于多个EditText
我想TextWatcher为多个EditText字段实现接口。目前我正在使用: text1.addTextChangedListener(this); text2.addTextChangedListener(this); 然后覆盖我的Activity中的方法: public void afterTextChanged(Editable s) {} public void beforeTextChanged(CharSequence s, int start, int count, int after) {} public void onTextChanged(CharSequence s, int start, int before, int count) { // do some operation on text of text1 field // do some operation on text of text2 field } …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.