Android TextEvent 对于值更改的帮助
所以我在 Java 程序中使用了这段很棒的代码
// Textlistener for the keyword "keyword"
public void textValueChanged(TextEvent e){
if (text.getText().toLowerCase().contains("keyword")){
parseInput(text.getText());
text.setText("");
}
}
问题是,美妙的 Android 操作系统几乎改变了所有 Java。 /沮丧
有人能指出我正确的方向吗?我目前正在使用 EditText 字段来输入文本,并且希望在输入关键字时立即获取它。
So I've got this great piece of code that I use in a Java program
// Textlistener for the keyword "keyword"
public void textValueChanged(TextEvent e){
if (text.getText().toLowerCase().contains("keyword")){
parseInput(text.getText());
text.setText("");
}
}
Problem is, the wonderful Android OS changes pretty much all Java. /frustration
Could someone point me in the right direction? I'm currently using an EditText field to input the text, and want to immediately take it if the keyword is entered.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实现一个 TextWatcher 并使用 addTextChangedListener() 将其粘贴到您的 EditText 视图上。
http://developer.android.com/reference/android/text/TextWatcher.html
Implement a TextWatcher and stick it onto your EditText view with addTextChangedListener().
http://developer.android.com/reference/android/text/TextWatcher.html