122

我正在使用AlertDialog.Builder来创建一个输入框,并使用 EditText 作为输入法。

不幸的是,尽管EditText处于焦点位置,但软键盘不会弹出,除非您再次明确触摸它。

有没有办法强制它弹出?

在 (AlertDialog.Builder).show(); 之后,我尝试了以下操作 但无济于事。

InputMethodManager mgr = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
mgr.showSoftInput(input, InputMethodManager.SHOW_FORCED);

任何人都可以帮忙吗?

谢谢!!

4

14 回答 14

228

我做了这样的事

AlertDialog.Builder b = new AlertDialog.Builder(this);//....
AlertDialog dialog = b.create();

dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);

dialog.show();
于 2011-07-20T09:00:15.467 回答
31

我设法像这样解决它:

Dialog = builder.create();
Dialog.show();
Dialog.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE  | WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
于 2013-06-06T21:40:00.373 回答
23

我发现相同的代码在平板电脑上正常工作,键盘确实弹出,但在手机上却没有,所以进一步研究,似乎指向“调整”选项。

我在用这个,感觉干净多了。

AlertDialog d = builder.create();
d.getWindow().setSoftInputMode(
    WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
d.show();
于 2014-05-20T14:16:06.807 回答
12

在我的情况下,我能够在显示对话框时显示键盘的唯一方法是添加到我的DialogFragment

@Override
public void onResume() {
    super.onResume();
    getDialog().getWindow().clearFlags(WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE | WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
    getDialog().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
    myEditText.requestFocus();
}

注意SOFT_INPUT_STATE_ALWAYS_VISIBLE而不是SOFT_INPUT_STATE_VISIBLE

从文档:

// Visibility state for softInputMode: please always make the soft input 
// area visible when this window receives input focus.
int SOFT_INPUT_STATE_ALWAYS_VISIBLE;
于 2017-09-15T22:16:39.983 回答
7

当您调用showDialog()以显示使用AlertDialogin创建的对话框时onCreateDialog()

你应该把代码放在onPrepareDialog()

@Override
protected void onPrepareDialog (int id, Dialog dialog, Bundle args)
{
    TextView editText=(TextView) dialog.findViewById(R....);

    editText.setOnFocusChangeListener(new View.OnFocusChangeListener() {
       @Override
       public void onFocusChange(View v, boolean hasFocus) {
         if (hasFocus) {
            dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
         }
       }
    });
}
于 2011-01-26T16:52:27.230 回答
6

这里给出了一个更好的解决方案。

dialog.getWindow().clearFlags(
         WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
        |WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);

没有解决方法。EditText表现如预期。

于 2013-05-31T15:33:11.903 回答
4

就我而言,在显示对话框之前(在创建它之后)设置 SoftInputMode 时没有显示它。下面的代码对我有用,我在显示对话框后设置了 SoftInputMode。

科特林:

val dialog = MaterialAlertDialogBuilder(context) // Other builder code
                .create()
dialog.show()
dialog.window?.apply { // After the window is created, get the SoftInputMode
    clearFlags(WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE)
    clearFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM)
    setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE)
}

爪哇:

AlertDialog dialog = MaterialAlertDialogBuilder(getContext()) // Other builder code
                .create();
dialog.show();
Window window = dialog.getWindow();
if(window != null){ // After the window is created, get the SoftInputMode
    window.clearFlags(WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE);
    window.clearFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
    window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
}

我希望这可以帮助任何和我有同样问题的人。

于 2020-06-09T07:39:52.893 回答
2
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);
于 2016-05-12T06:24:24.047 回答
1

这已经在这里回答了。使用 OnFocusChangeListener 对我有用。

于 2010-09-09T19:27:18.093 回答
0

我找到了一个简单可靠的解决方案,如果您有一个可编辑字段不在根目录中的复杂布局,只需在对话框布局的根目录上放置一个隐藏的 EditText,

<!-- Just to trick AlertDialog to not hide soft keyboard -->
<EditText
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:visibility="gone" />

这基本上是为了欺骗compat/androidx的这一部分

我曾经使用onResume上面的解决方案,但我不能使用更简单的 APIAlertDialog.Builder()来删除使用,AppCompatDialogFragment但现在我可以简单地使用更简单的 API。

于 2021-05-13T22:42:47.200 回答
0

试试这个,它对我有用

如果要显示软键盘:

InputMethodManager imm = (InputMethodManager)getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
                    imm.showSoftInput(input.getWindowToken(), 0);

如果你想隐藏它:

  InputMethodManager imm = (InputMethodManager)getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
            imm.hideSoftInputFromWindow(input.getWindowToken(), 0);
于 2016-03-30T11:12:24.950 回答
0

在调用 AlertDialog.onCreate 后添加 EditText 时会出现此问题。

https://developer.android.com/reference/androidx/appcompat/app/AlertDialog.Builder

AlertDialog 类会根据对话框中的任何视图是否从 View.onCheckIsTextEditor() 返回 true,自动为您设置 android.view.WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM。

您需要清除 FLAG_ALT_FOCUSABLE_IM 标志。

getWindow().clearFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM); 

因为在DialogFragment.onStart 中调用了AlertDialog.show,所以可以在DialogFragment.onStart 中插入代码。

@Override
public void onStart() {
    super.onStart();
    getDialog().getWindow().clearFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
}

或者,如果您不使用 DialogFragment,则可以使用 Dialog.setOnShowListener。

dialog.setOnShowListener(new DialogInterface.OnShowListener() {
    @Override
    public void onShow(DialogInterface dialog) {
        getDialog().getWindow().clearFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
    }
});
于 2020-07-07T02:21:53.490 回答
0

试试这个,它对我有用

    Window window = dialog.getWindow();
    if (window != null) { // After the window is created, get the SoftInputMode
        window.clearFlags(WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE);
        window.clearFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
        window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
    }
于 2021-04-19T05:51:42.287 回答
0
final AlertDialog.Builder alert = new AlertDialog.Builder(context);

final AlertDialog dialog = alert.show();
dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
于 2017-01-07T21:23:22.173 回答