進入一個界面,焦點落在了一個EditText上,導致輸入法擋住了下面的CheckBox,無法操作。
[java]
- static void hideSoftInputFromWindow(Instrumentation inst, View view) {
- InputMethodManager imm = (InputMethodManager) inst.getTargetContext().getSystemService(Context.INPUT_METHOD_SERVICE);
- imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
- }
用這個方法隱藏輸入法軟鍵盤