更改android键盘的返回符号

发布于 2024-10-26 00:00:19 字数 44 浏览 3 评论 0原文

如何更改默认 Android 键盘上的返回符号

How can I change the return symbol on the default Android keyboard?

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

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

发布评论

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

评论(2

零時差 2024-11-02 00:00:19

您可以通过以下方式实现此目的..

youredittext 是 edittext...

youredittext.setImeOptions(EditorInfo.IME_ACTION_SEARCH);
youredittext.setImeActionLabel......with this you can specify a string 


youredittext.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
    if (actionId == EditorInfo.IME_ACTION_SEARCH) {
        performSearch();
        return true;
    }
    return false;
}

});

You can achieve this by..

youredittext is the edittext...

youredittext.setImeOptions(EditorInfo.IME_ACTION_SEARCH);
youredittext.setImeActionLabel......with this you can specify a string 


youredittext.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
    if (actionId == EditorInfo.IME_ACTION_SEARCH) {
        performSearch();
        return true;
    }
    return false;
}

});

贱贱哒 2024-11-02 00:00:19

你不能,你必须实现一个自定义键盘。

或者你可以但只能在有root权限的手机上。

You can't you would have to implement a custom keyboard.

Or you could but ONLY on a rooted phone.

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