1
當我的活動加載時,我希望txtEdit EditText小部件獲得焦點並顯示鍵盤。Android Form EditText顯示鍵盤onResume
我在onResume()中試過這個,但它不會自動顯示。
@Override
protected void onResume() {
InputMethodManager mgr = (InputMethodManager)
getSystemService(Context.INPUT_METHOD_SERVICE);
mgr.showSoftInput(txtSearch, InputMethodManager.SHOW_IMPLICIT);