I have a Spinner(inside a dialog) that contains an EditText as one of its element. The problem is that no keyboard is shown when I click inside the EditText. I tried various methods like manually opening the softkeyboard with the InputMethodManager whenever there is an OnClick or OnItemSelected event occurs but none of these worked for me.

Any tips?

Thanks in advance.

link|improve this question

67% accept rate
post the code which u tried... – Raghav Aug 24 '11 at 8:44
feedback

1 Answer

up vote 0 down vote accepted

Try this,

InputMethodManager m = (InputMethodManager) 
  if(m != null){
      m.toggleSoftInput(0, InputMethodManager.SHOW_IMPLICIT);
   } 
link|improve this answer
Thanks the keyboard did open though it is shown behind the spinnerlist. I'll try to do something about it. – Sazbak Aug 24 '11 at 9:26
You are welcome. – Lalit Poptani Aug 24 '11 at 9:28
feedback

Your Answer

 
or
required, but never shown

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