This code seems not to work in Landscape mode:

EditText destinationSearch = (EditText) findViewById(R.id.destinationSearch); 

destinationSearch.requestFocus(); InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(destinationSearch, InputMethodManager.SHOW_IMPLICIT);

Is there any solution to show the soft keyboard in Landscape mode ?

link|improve this question

50% accept rate
Seems to work with SHOW_FORCE flag :D – andreea Jan 21 '11 at 17:27
feedback

1 Answer

up vote 2 down vote accepted

You need to use show forced

InputMethodManager imm;
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED,InputMethodManager.HIDE_IMPLICIT_ONLY);
imm.showSoftInput(this.editText,InputMethodManager.SHOW_FORCED);
link|improve this answer
Bakih, Yes, indeed. Thank you :) – andreea Jan 25 '11 at 19:03
Why do you need to toggleSoftInput with HIDE_IMPLICIT_ONLY? – Igor G. Apr 19 at 20:11
feedback

Your Answer

 
or
required, but never shown

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