此代碼似乎並沒有在風景模式下工作:顯示軟鍵盤時,該設備是橫向模式
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 – andreea