gpt4 book ai didi

java - 按下按钮时清除编辑文本

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

我希望我的 onTextChanged 类在用户输入“空格”时读取,以便我可以清除我的 EditText View 。问题是按下空格键时没有任何反应。有人知道我做错了什么吗?我的程序没有崩溃,只是什么都不做。

 public void onTextChanged(CharSequence s, int start, int before,
int count) {
SS.setText(s);
if (s.equals("r")) {
SS.setText(s);
et.setText(" ");
}
}

@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
et.setTextColor(Color.parseColor("#000000"));

}

@Override
public void afterTextChanged(final Editable s) {
// cancel the previous search if any

// toasted();
if (delayedAction != null) {
handler.removeCallbacks(delayedAction);
}
// toasted();

// define a new search
delayedAction = new Runnable() {

@Override
public void run() {
// start your search
// toasted();

// if (s.toString().equals(current)) {
// // toasted(); <== Here is where it needs to work
// // Toast.LENGTH_LONG).show();
// }

et.setTextColor(Color.parseColor("#C0C0C0"));
toasted();
tv.setText(et.getText().toString());
tv.setTextColor(Color.parseColor("#66CC66"));
et.setText("");
}

};

最佳答案

应该是s.equals("")而不是s.equals(' ')

关于java - 按下按钮时清除编辑文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11919241/

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