Android TextEvent 对于值更改的帮助

发布于 2024-10-28 07:24:02 字数 384 浏览 0 评论 0原文

所以我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

待天淡蓝洁白时 2024-11-04 07:24:02

实现一个 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文