79

我正在显示一个带有 edittext 视图的对话框。但是,只有当用户在编辑视图内按下时,软键盘才会打开。所以我尝试使用以下代码调用 InputMethodManager。

InputMethodManager imm =
 (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(dialogField,0);

dialogField 是输入字段。但是,我到底应该在什么时候这样做?我在对话框的 onStart() 方法中尝试过,但没有任何反应。我之前也尝试过为 dialogField 请求焦点,但这没有任何改变。

我也试过这段代码

dialogField.setOnFocusChangeListener(new View.OnFocusChangeListener()
{
    public void onFocusChange (View v, boolean hasFocus)
    {
        if (hasFocus)
        {
            Main.log("here");
            dialogInput.getWindow().setSoftInputMode(
              WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
            /*
                InputMethodManager mgr =
                  (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
                mgr.showSoftInput(dialogField,0);
            */
        }
    }
});

在两个版本中。但是不想出现软键盘。Main.log 只是一个日志,它告诉我该函数实际上是被调用的。是的,它被称为。

我可以在对话框打开之前获得带有 SHOW_FORCED 标志的键盘。但是它不会在退出时关闭。我只能在显示对话框之前这样做。在任何回调中它也不起作用。

4

5 回答 5

192

很棒的问题,我也试图这样做并找到了解决方案。

使用对话框构建器类AlertDialog.Builder,您必须像这样调用对话框:

AlertDialog.Builder builder = new AlertDialog.Builder();
AlertDialog dialog;

builder.set...

dialog = builder.create();
dialog.getWindow().setSoftInputMode(LayoutParams.SOFT_INPUT_STATE_VISIBLE);
dialog.show();

这对我来说很好。

注意:你必须import android.view.WindowManager.LayoutParams;为那里的常数值。

于 2013-10-24T17:53:28.273 回答
16
 AlertDialog dialog = new AlertDialog.Builder(this).create();
    dialog.show();
    Window window = dialog.getWindow();
    window.clearFlags(WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE | WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
    window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
于 2018-07-02T17:28:35.603 回答
7

科特林

这是经过测试的代码。

val dialog = AlertDialog.Builder(requireContext()).apply {
    setTitle(…)
    setView(editText)
    setPositiveButton(…)
    setNegativeButton(…)
}
val window = dialog.show().window
window?.clearFlags(WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE or WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM)
window?.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE)

确保从方法访问window属性。从方法show()获取为我返回,所以键盘没有显示。windowcreate()null

AlertDialog从导入androidx.appcompat.app.AlertDialogWindowManager从导入android.view

于 2019-12-02T15:51:29.680 回答
1

Kotlin 的对话片段

覆盖 onStart 方法

override fun onStart() {
    super.onStart()
    dialog.window?.
    setSoftInputMode(
    WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE
    )
}

如果您想在关闭后关闭,请使用以下代码覆盖关闭方法

override fun onDismiss(dialog: DialogInterface?) {
val inputMethodManager = context?.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
        inputMethodManager.hideSoftInputFromWindow(activity?.currentFocus?.windowToken, InputMethodManager.HIDE_IMPLICIT_ONLY)
}
于 2020-07-27T07:03:10.913 回答
0

这是我的解决方案,它适用于对话。

txtFeedback.requestFocus();
InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
inputMethodManager.toggleSoftInput(InputMethodManager.SHOW_FORCED, InputMethodManager.HIDE_IMPLICIT_ONLY);

也许您还需要将其添加到 AndroidManifest.xml 中的活动标记中,以便在关闭对话框时关闭键盘。

android:windowSoftInputMode="stateAlwaysHidden"
于 2021-08-28T04:44:23.480 回答