78

I am displaying a dialog with an edittext view. However, the softkeyboard will open only if the user presses inside the editview. So I tried calling an InputMethodManager with the following code.

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

The dialogField is the input field. However, when exactly am I supposed to do this? I tried it in the onStart() method of the dialog, but nothing happens. I also tried requesting the focus for the dialogField before, but that changes nothing.

I also tried this code

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);
            */
        }
    }
});

in both versions. But no soft keyboard would like to appear. The Main.log is just a log, which shows me that the function is actually called. And yes, it is called.

I could get the keyboard with the SHOW_FORCED flag before the dialog opens. But then it will not close on exit. And I can only do that BEFORE I show the dialog. Inside any callbacks it does not work either.

Yogesh Umesh Vaity
  • 16,749
  • 10
  • 82
  • 69
Rene
  • 3,478
  • 8
  • 26
  • 31
  • Have you tried the SHOW_IMPLICIT flag? – Telmo Marques Nov 23 '10 at 17:02
  • 1
    This is something I have struggled with excessively but have been unable to get to work properly. – Thomas Nov 23 '10 at 17:59
  • Yes, I tried the SHOW_IMPLICIT flag. The documentation says exactly, that you should call showSoftInput, if the user is expected to do input for a TextEdit. But how? – Rene Nov 24 '10 at 06:32
  • This was answered [here](https://stackoverflow.com/questions/2403632/android-show-soft-keyboard-automatically-when-focus-is-on-an-edittext "here"), and it works great for me. – Shawn Lauzon Apr 26 '11 at 22:18

4 Answers4

189

Awesome question, I was trying to do that too and found a solution.

Using the dialog builder class AlertDialog.Builder you will have to invoke the dialog like this:

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

builder.set...

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

This worked fine for me.

Note: you must import android.view.WindowManager.LayoutParams; for the constant value there.

SparK
  • 4,909
  • 2
  • 20
  • 32
  • 1
    I do wonder how this affects the window behaviour after the dialog will close... let's not forget that the window contains the dialog and your activities as well – Alex.F Jan 06 '15 at 09:38
  • This does not set the keyboard to an "always on" behaviour, this only triggers the open keyboard method while dialog is opening. Once user presses the "back key" or leaves the input field, keyboard will close again, like it normaly would. – SparK Jan 09 '15 at 11:07
  • 4
    For anyone with the same issue note that `setSoftInputMode()` must be called before `show()`. – Abbas Sep 12 '17 at 12:11
  • 2
    for me worked with 'SOFT_INPUT_STATE_ALWAYS_VISIBLE' – abbasalim Dec 02 '17 at 07:31
  • not working for me, still opening the keyboard over the all the elements... using AlertDialogBuilder =( – h3nr1ke Feb 06 '18 at 20:05
  • 2
    Wow, thank you so much! Can we please add a donation or contribute button to SO for showing appreciation? – Joel Broström Jul 12 '18 at 08:20
  • 1
    FINALLY an answer! For anyone, who wants to use it from a custom dialog class, just call `getWindow().setSoftInputMode(LayoutParams.SOFT_INPUT_STATE_VISIBLE);` from the `onCreate()` method. – Nekomajin42 Aug 01 '20 at 00:31
15
 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);
Deli Coder
  • 191
  • 1
  • 3
  • 1
    Dude you are amazing! That windows.cl3wrFlags line is important. I had checked every SO answer and that line wasn't mentioned anywhere else. Thanks man! – FreakyLearner Jun 07 '20 at 16:14
  • Please be aware that calling `dialog.getWindow().setSoftInputMode()` **after** `dialog.show()` on Android 4-8 has a nasty side effect: dialog remains on screen after configuration changes, still tied to already destroyed Activity/Fragment. – gmk57 Jan 19 '21 at 14:44
6

Kotlin

Here's the tested code.

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)

Make sure you access the window property from show() method. Getting window from create() method was returning null for me, so the keyboard wasn't showing.

Import AlertDialog from androidx.appcompat.app.AlertDialog. Import WindowManager from android.view.

Yogesh Umesh Vaity
  • 16,749
  • 10
  • 82
  • 69
1

Dialog Fragment With Kotlin

override onStart Method

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

if you want to close after dismiss then override dismiss method with below code

override fun onDismiss(dialog: DialogInterface?) {
val inputMethodManager = context?.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
        inputMethodManager.hideSoftInputFromWindow(activity?.currentFocus?.windowToken, InputMethodManager.HIDE_IMPLICIT_ONLY)
}