Searched defs:showSoftInputUnchecked (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManager.java936 public void showSoftInputUnchecked(int flags, ResultReceiver resultReceiver) { method in class:InputMethodManager
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSearchView.java158 HIDDEN_METHOD_INVOKER.showSoftInputUnchecked(imm, SearchView.this, 0);
1709 private Method showSoftInputUnchecked; field in class:SearchView.AutoCompleteTextViewReflector
1734 showSoftInputUnchecked = InputMethodManager.class.getMethod(
1735 "showSoftInputUnchecked", int.class, ResultReceiver.class);
1736 showSoftInputUnchecked.setAccessible(true);
1769 void showSoftInputUnchecked(InputMethodManager imm, View view, int flags) { method in class:SearchView.AutoCompleteTextViewReflector
1770 if (showSoftInputUnchecked != null) {
1772 showSoftInputUnchecked.invoke(imm, flags, null);

Completed in 55 milliseconds