gpt4 book ai didi

java - 无法将文本设置为 TextWatcher 中的 EditView

转载 作者:行者123 更新时间:2023-11-30 03:50:15 25 4
gpt4 key购买 nike

我有一个名为“文本”的 EditView。我已经实现了 textWatcher

   text.addTextChangedListener(this);

每当我尝试将 EditView 设置为 TextWatcher 中的某个值时,它就会强制关闭。

代码如下:

 public void beforeTextChanged(CharSequence s, int start, int count,int after) 
{

}
public void onTextChanged(CharSequence s, int start, int before, int end)
{
//text.setText("");
}
public void afterTextChanged(Editable s)
{
//text.setText("");
}

我的要求是:每当用户键入一些值时,EditView 必须设置回 Null。请帮帮我。

最佳答案

你可以这样做:

public void beforeTextChanged(CharSequence s, int start, int count,int after) {
}

public void onTextChanged(CharSequence s, int start, int before, int end) {
}

public void afterTextChanged(Editable s){
s.clear();
}

关于java - 无法将文本设置为 TextWatcher 中的 EditView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14277891/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com