OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inputMethodManager
(Results
1 - 7
of
7
) sorted by null
/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/Contacts/src/com/android/contacts/group/
GroupBrowseListFragment.java
39
import android.view.inputmethod.
InputMethodManager
;
277
InputMethodManager
inputMethodManager
= (
InputMethodManager
)
279
inputMethodManager
.hideSoftInputFromWindow(mListView.getWindowToken(), 0);
/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);
/frameworks/base/core/java/android/view/inputmethod/
InputMethodManager.java
202
public final class
InputMethodManager
{
204
static final String TAG = "
InputMethodManager
";
208
static
InputMethodManager
sInstance;
484
private final
InputMethodManager
mParentInputMethodManager;
488
final
InputMethodManager
inputMethodManager
) {
490
mParentInputMethodManager =
inputMethodManager
;
547
InputMethodManager
(IInputMethodManager service, Looper looper) {
556
* Retrieve the global
InputMethodManager
instance, creating it if it
560
public static
InputMethodManager
getInstance()
[
all
...]
/packages/apps/Mms/src/com/android/mms/ui/
ComposeMessageActivity.java
110
import android.view.inputmethod.
InputMethodManager
;
[
all
...]
Completed in 1113 milliseconds