强制从 AlertDialog 中显示软键盘

发布于 2024-11-14 15:34:38 字数 688 浏览 1 评论 0原文

我有以下代码,我认为应该可以在显示警报对话框时强制显示键盘。

public void showTypeBox(){
        edit = new EditText(this);
        edit.setPadding(10, 0, 0, 10);

        AlertDialog dialog = new AlertDialog.Builder(this)
            .setTitle("Type word to search for:")
            .setPositiveButton("Search", Main.this)
            .setNegativeButton("Cancel", null)
            .setView(edit)
            .setIcon(R.drawable.menu_icon)
            .create();
        dialog.show();

        InputMethodManager mgr = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
        mgr.showSoftInput(edit, InputMethodManager.SHOW_IMPLICIT);
    }

我看不出我在这里做错了什么。

I have the following code which I think should work to force the keyboard to be shown when the Alert Dialog is shown.

public void showTypeBox(){
        edit = new EditText(this);
        edit.setPadding(10, 0, 0, 10);

        AlertDialog dialog = new AlertDialog.Builder(this)
            .setTitle("Type word to search for:")
            .setPositiveButton("Search", Main.this)
            .setNegativeButton("Cancel", null)
            .setView(edit)
            .setIcon(R.drawable.menu_icon)
            .create();
        dialog.show();

        InputMethodManager mgr = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
        mgr.showSoftInput(edit, InputMethodManager.SHOW_IMPLICIT);
    }

I can't see what i'm doing wrong here.

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

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

发布评论

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

评论(1

找个人就嫁了吧 2024-11-21 15:34:38

您试图在 EditText 布局并可见之前显示键盘。试试这个:

Handler delayedRun = new Handler();
delayedRun.post(new Runnable() {
  @Override
  public void run() {
    edit.requestFocus();
    InputMethodManager mgr = (InputMethodManager) getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
    mgr.showSoftInput(addressBox, InputMethodManager.SHOW_IMPLICIT);
  }
});

You're trying to show the keyboard before the EditText is laid out and visible. Try this:

Handler delayedRun = new Handler();
delayedRun.post(new Runnable() {
  @Override
  public void run() {
    edit.requestFocus();
    InputMethodManager mgr = (InputMethodManager) getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
    mgr.showSoftInput(addressBox, InputMethodManager.SHOW_IMPLICIT);
  }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文