1
我已經從XML一個變量:關閉Android鍵盤上開始
editTextInput =(的EditText)findViewById(R.id.editTextInput);
當應用程序加載鍵盤時顯示,但我想隱藏它,並且如果用戶想要返回它,她必須單擊EditText字段來顯示它。
我已經從XML一個變量:關閉Android鍵盤上開始
editTextInput =(的EditText)findViewById(R.id.editTextInput);
當應用程序加載鍵盤時顯示,但我想隱藏它,並且如果用戶想要返回它,她必須單擊EditText字段來顯示它。
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
這應該工作:
InputMethodManager inputManager =
(InputMethodManager) context.
getSystemService(Context.INPUT_METHOD_SERVICE);
inputManager.hideSoftInputFromWindow(
this.getCurrentFocus().getWindowToken(),
InputMethodManager.HIDE_NOT_ALWAYS);
酷感謝:-) – Solo
不要忘了接受的答案。 –