How to update the same EditText using TextWatcher?(如何使用 TextWatcher 更新相同的 EditText?)
问题描述
在我的 Android 应用程序中,我需要实现一个 TextWatcher 接口来实现 onTextChanged.我遇到的问题是,我想用一些额外的字符串更新相同的 EditText.当我尝试这样做时,程序会终止.
In my Android application I need to implement a TextWatcher interface to implement onTextChanged
. The problem I have is, I want to update the same EditText With some extra string. When I try to do this the program terminates.
final EditText ET = (EditText) findViewById(R.id.editText1);
ET.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count)
{
try
{
ET.setText("***"+ s.toString());
ET.setSelection(s.length());
}
catch(Exception e)
{
Log.v("State", e.getMessage());
}
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after)
{
}
@Override
public void afterTextChanged(Editable s)
{
}
});
我的程序终止了,即使我尝试在我的代码中捕获异常,它仍然终止.有谁知道为什么会发生这种情况以及我如何做到这一点?谢谢.
My program terminates and even I try to catch the exception like in my code still it terminates. Does anyone have any idea why this happens and how I can achieve this? Thanks.
推荐答案
TextView
的内容在 onTextChanged
事件上不可编辑.
The content of the TextView
is uneditable on the onTextChanged
event.
相反,您需要处理 afterTextChanged
事件才能对文本进行更改.
Instead, you need to handle the afterTextChanged
event to be able to make changes to the text.
更详尽的解释参见:Android TextWatcher.afterTextChanged vs TextWatcher.onTextChanged
注意:错误onTextChanged
显然,您正在通过不断更改 afterTextChanged
事件上的 text 导致无限循环.
Obvioulsy, you are causing an endless loop by continuously changing the text on afterTextChanged
event.
来自 参考一个>:
public abstract void afterTextChanged (Editable s)
调用此方法是为了通知您,在 s 中的某处,文本已被改变了.从此对 s 进行进一步更改是合法的回调,但注意不要让自己陷入无限循环,因为您所做的任何更改都会导致再次调用此方法递归地....
建议1:如果可以的话,检查
s
是否已经在事件触发时是你想要的.Suggestion 1: if you can, check if the
s
is already what you want when the event is triggered.@Override public void afterTextChanged(Editable s) { if( !s.equalsIngoreCase("smth defined previously")) s = "smth defined previously"; }
- 建议 2:如果您需要做更复杂的事情(格式化、验证)您可以使用 synchronized 方法-textwatcher">这个发帖.
- Suggestion 2: if you need to do more complex stuff (formatting,
validation) you can maybe use a
synchronized
method like in this post.
注意 2:将输入格式化为部分隐藏,并用 n 个星号直到最后一个 4 个字符(****四个)
Note 2 : Formatting the input as partially hidden with n stars till the last 4 chars ( ****four)
您可以在建议 1 中使用类似的内容:
You can use something like this in suggestion 1:
@Override
public void afterTextChanged(Editable s)
{
String sText = ET.getText().toString()
if( !isFormatted(sText))
s = format(sText);
}
bool isFormatted(String s)
{
//check if s is already formatted
}
string format(String s)
{
//format s & return
}
这篇关于如何使用 TextWatcher 更新相同的 EditText?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 TextWatcher 更新相同的 EditText?
基础教程推荐
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 降序排序:Java Map 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01