My code for opening an input dialog reads as follows:

final AlertDialog.Builder alert = new AlertDialog.Builder(this);  
alert.setTitle("Dialog Title");  
alert.setMessage("Request information");  
LayoutInflater factory = LayoutInflater.from(this);
final View textEntryView = factory.inflate(R.layout.edittextautotextlayout, null);
final EditText inputBox = (EditText) textEntryView.findViewById(R.id.my_et_layout);
alert.setView(inputBox);

This works fine except that I have to tap the text entry line before the soft keyboard appears.

Following the advice given here I have tried inserting:

inputBox.setOnFocusChangeListener(new View.OnFocusChangeListener() {
    @Override
    public void onFocusChange(View v, boolean hasFocus) {
        if (hasFocus) {
            alert.getWindow().setSoftInputMode( 
               WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
        }
    }
});

but Eclipse objects that "the method getWindow() is not defined for the type AlertDialog.Builder".

It seems that the setOnFocusChangeListener code works for an AlertDialog object but not an AlertDialog.Builder. How should I modify my code to make the soft keyboard appear automatcially.

link|improve this question

80% accept rate
feedback

8 Answers

This is in response to miannelle.

The following method is called when a menu option is selected:

private void addNote() {
    final Dialog dialog = new Dialog(this);
    dialog.setContentView(R.layout.textentryalertdialog);
    dialog.setTitle("Add note");
    TextView msgText = (TextView) dialog.findViewById(R.id.messagetext);
    msgText.setText("Whatever prompt you want");
    final EditText inputLine = (EditText) dialog.findViewById(R.id.my_edittext);
    Button okButton = (Button) dialog.findViewById(R.id.OKButton);
    okButton.setOnClickListener(new OnClickListener() {
        public void onClick(View arg0) {
            dialog.dismiss();
            // app specific code
        }           
    });
    Button cancelButton = (Button) dialog.findViewById(R.id.CancelButton);
    cancelButton.setOnClickListener(new OnClickListener() {
        public void onClick(View arg0) {
            dialog.dismiss();
        }           
    });
    dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
    dialog.show();
}

The textentryalertdialog.xml file defines a linear layout containing

TextView android:id="@+id/messagetext" ...

EditText android:id="@+id/my_edittext" ...

Button android:id="@+id/OKButton" ...

Button android:id="@+id/CancelButton" ...

I hope this helps.

link|improve this answer
Code does not work on device which have a real keyboard (like Moto Droid). Anyone knows how to deal with that? – Sean Feb 24 at 8:19
feedback

As long as you always need to show the keyboard immediately once the dialog opens rather than once a specific form widget inside gets focus (for instance, if your dialog just shows an EditText and a button), you can do the following:

AlertDialog alertToShow = alert.create();
alertToShow.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
alertToShow.show();

Rather than calling .show() on your builder immediately, you can instead call .create() which allows you to do some extra processing on it before you display it onto the screen.

link|improve this answer
feedback
up vote 2 down vote accepted

With the encouragement of Mur Votema (see his answer above) I have answered my question by building a custom dialog based on the Dialog class. Unlike an alert based on AlertDialog.Builder such a custom dialog does accept the getWindow().setSoftInputMode(...) command and therefore allows the soft keyboard to be displayed automatically.

For guidance on building a custom dialog I found this web page and this especially helpful.

link|improve this answer
Congratulations!!! :) – Mur Votema Nov 7 '10 at 10:23
Thanks again to you and everyone else for your help. :) – prepbgg Nov 7 '10 at 20:36
feedback

Have you tried to set focus on your EditText -> inputBox.requestFocus() or something like that?

link|improve this answer
Thanks for the suggestion. I tried inserting inputBox.requestFocus(); after alert.setView(inputBox);, but no joy! – prepbgg Oct 30 '10 at 16:24
... and if you try to call requestFocus after alert.create() ? Because first dialog should be created and then edit can get focus, no?! – Mur Votema Oct 30 '10 at 21:05
My code doesn't explicitly call create(). Presumably it is called indirectly by the statement "AlertDialog.Builder alert = new AlertDialog.Builder(this);" which definitely comes before any other reference to alert. – prepbgg Oct 30 '10 at 21:15
but is there show()-method somewhere in your code?! – Mur Votema Oct 30 '10 at 22:22
1  
With the help of a couple of tutorials (helloandroid.com/tutorials/… and blog.androgames.net/10/custom-android-dialog) I've created a custom Dialog object which emulates the default AlertDialog.Builder object well (so far as I can tell) and which (unlike an AlertDialog.Builder object) accepts the getWindow().setSoftInputMode(...) command. Bingo! It wasn't so difficult, I suppose, but it's an extraordinarily fiddly thing to have to do just to allow the automatic display of the soft keyboard. – prepbgg Nov 6 '10 at 20:54
show 7 more comments
feedback

try using inputBox

inputBox.getWindow().setSoftInputMode( 
               WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
link|improve this answer
Thanks for the suggestion. However, when I try that Eclipse says "the method getWindow() is undefined for type EditText" – prepbgg Oct 30 '10 at 13:18
feedback

try using view

v.getWindow().setSoftInputMode( 
           WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
link|improve this answer
Thanks for the suggestion. I tried that, but unfortunately I got the same error message ("the method getWindow() is undefined for the type View") – prepbgg Oct 30 '10 at 16:20
feedback

Hi Prepbgg there is actually an alternative way to what you've done. I actually had to use mine within my ArrayAdapter. What i did was pass the context of the activity into the arrayadapter then call it to access getWindow() something like this:

NoteArrayAdapter(Activity _activity, int _layout, ArrayList<Note> _notes, Context _context) {
  callingNoteListObj = (NoteList) _context;
}

// withiin getView

callingNoteListObj.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);

// within parent activity's onCreate()
thisObject = this;

//within my parent activity's fillData() (NoteList)
adapter =  new NoteArrayAdapter(activity, R.layout.channel_note_list_item, noteList, thisObject);
link|improve this answer
feedback

I think you almost had it working in your original question. Try creating a final AlertDialog to call getWindow() on, e.g.

// Create the dialog used to modify the mailbox alias
final AlertDialog dialog = alert.create();

inputBox.setOnFocusChangeListener(new View.OnFocusChangeListener() {
    @Override
    public void onFocusChange(View v, boolean hasFocus) {
        if (hasFocus) {
            dialog.getWindow().setSoftInputMode( 
               WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
        }
    }
});

I've tested this code and the keyboard now appears automatically on most of my devices, including: -Samsung Galaxy Tab OS 2.2 -Samsung Galaxy S OS 2.1 -HTC Sensation OS 2.3.4

Some other comments on this solution:

1) Check if you've got anything in your XML already to request the focus, as that may stop this code working (according to Ted in the question you link to).

2) This code doesn't seem to work on my HTC G2 running OS 2.3.4. I guess this is because it has a physical keyboard, and maybe the WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE option doesn't work with it?

I also tried SOFT_INPUT_STATE_VISIBLE (without the ALWAYS), but that stopped the keyboard appearing automatically.

3) You may also want to add code so the user can press the Done button on the keyboard to submit the changes, e.g.

inputAlias.setOnKeyListener(new OnKeyListener()
{
  @Override
  public boolean onKey(View v, int keyCode, KeyEvent event)
  {
    if (keyCode == KeyEvent.KEYCODE_ENTER &&
        inputAlias.isFocused() &&
        inputAlias.getText().length() != 0)
    {
      // Save the new information here

  // Dismiss the dialog
      dialog.dismiss();
      return true;
    }
    return false;
  }
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.