現在,我試圖隱藏softkeyboard當用戶觸摸鍵盤外:如何獲取Activity的windowToken無視圖?
((InputMethodManager) getSystemService(INPUT_METHOD_SERVICE))
.hideSoftInputFromWindow(editView.getWindowToken(),
InputMethodManager.HIDE_NOT_ALWAYS);
我希望把邏輯在我的基類的活動,所以如果有可能getWindowToken沒有查看?
是這個錯別字 「getgetWindowToken()」? – MKJParekh
[點擊EditText之外如何隱藏安卓軟鍵盤]可能的重複?(http://stackoverflow.com/questions/4165414/how-to-hide-soft-keyboard-on-android-after-clicking-outside -edittext) – Reno
'InputMethodManager輸入管理=(InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);' 'inputManager.hideSoftInputFromWindow(findViewById(android.R.id.content).getWindowToken(),InputMethodManager.HIDE_NOT_ALWAYS);' –