Home | History | Annotate | Download | only in util

Lines Matching defs:inputMethodManager

21 import android.view.inputmethod.InputMethodManager;
64 final InputMethodManager inputMethodManager =
65 (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
66 if (inputMethodManager != null) {
67 inputMethodManager.hideSoftInputFromWindow(v.getWindowToken(), 0 /* flags */);
75 final InputMethodManager inputMethodManager =
76 (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
77 if (inputMethodManager != null) {
79 inputMethodManager.showSoftInput(v, 0 /* flags */);
84 final InputMethodManager inputMethodManager =
85 (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
86 inputMethodManager.hideSoftInputFromWindow(v.getWindowToken(), 0);