如何从Edittext中检索不同语言的字符串

发布于 2024-12-05 13:53:27 字数 48 浏览 1 评论 0原文

我遇到了这个问题 如何从 edittext 检索另一种语言(非英语)的字符串?

I faced this problem
how can I retrieve string with another language (not English) from edittext?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

岁月静好 2024-12-12 13:53:27

您应该能够简单地在 TextWatcher 中调用 toString()

设置监听器:
name.addTextChangedListener(new GenericTextWatcher(name));

定义您的侦听器:

private class GenericTextWatcher implements TextWatcher{
    private View view;
    private GenericTextWatcher(View view) {
        this.view = view;
    }

    public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {}
    public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {}

    public void afterTextChanged(Editable editable) {
        String text = editable.toString();
    }
}

在您尝试存储或显示字符串之前,字符串所使用的语言并不重要。

You should be able to simply call toString() in your TextWatcher:

Set your listener:
name.addTextChangedListener(new GenericTextWatcher(name));

Define your listener:

private class GenericTextWatcher implements TextWatcher{
    private View view;
    private GenericTextWatcher(View view) {
        this.view = view;
    }

    public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {}
    public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {}

    public void afterTextChanged(Editable editable) {
        String text = editable.toString();
    }
}

The language the String is in shouldn't matter until you try to store or display it.

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