OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:inputMethodManager
(Results
1 - 6
of
6
) sorted by null
/packages/apps/Contacts/src/com/android/contacts/group/
GroupBrowseListFragment.java
39
import android.view.inputmethod.
InputMethodManager
;
277
InputMethodManager
inputMethodManager
= (
InputMethodManager
)
279
inputMethodManager
.hideSoftInputFromWindow(mListView.getWindowToken(), 0);
/frameworks/base/core/java/android/widget/
DatePicker.java
37
import android.view.inputmethod.
InputMethodManager
;
776
InputMethodManager
inputMethodManager
=
InputMethodManager
.peekInstance();
777
if (
inputMethodManager
!= null) {
778
if (
inputMethodManager
.isActive(mYearSpinnerInput)) {
780
inputMethodManager
.hideSoftInputFromWindow(getWindowToken(), 0);
781
} else if (
inputMethodManager
.isActive(mMonthSpinnerInput)) {
783
inputMethodManager
.hideSoftInputFromWindow(getWindowToken(), 0);
784
} else if (
inputMethodManager
.isActive(mDaySpinnerInput))
[
all
...]
TimePicker.java
34
import android.view.inputmethod.
InputMethodManager
;
686
InputMethodManager
inputMethodManager
=
InputMethodManager
.peekInstance();
687
if (
inputMethodManager
!= null) {
688
if (
inputMethodManager
.isActive(mHourSpinnerInput)) {
690
inputMethodManager
.hideSoftInputFromWindow(getWindowToken(), 0);
691
} else if (
inputMethodManager
.isActive(mMinuteSpinnerInput)) {
693
inputMethodManager
.hideSoftInputFromWindow(getWindowToken(), 0);
694
} else if (
inputMethodManager
.isActive(mAmPmSpinnerInput))
[
all
...]
NumberPicker.java
51
import android.view.inputmethod.
InputMethodManager
;
[
all
...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactEntryListFragment.java
40
import android.view.inputmethod.
InputMethodManager
;
799
InputMethodManager
inputMethodManager
= (
InputMethodManager
)
801
inputMethodManager
.hideSoftInputFromWindow(mListView.getWindowToken(), 0);
/packages/apps/Mms/src/com/android/mms/ui/
ComposeMessageActivity.java
110
import android.view.inputmethod.
InputMethodManager
;
[
all
...]
Completed in 2619 milliseconds