【发布时间】:2011-06-13 07:14:47
【问题描述】:
此代码在横向模式下似乎不起作用:
EditText destinationSearch = (EditText) findViewById(R.id.destinationSearch);destinationSearch.requestFocus(); InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(destinationSearch, InputMethodManager.SHOW_IMPLICIT);
有没有办法在横向模式下显示软键盘?
【问题讨论】:
-
似乎与 SHOW_FORCE 标志一起使用:D
标签: java android landscape android-softkeyboard