Searched defs:softInputMode (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/content/pm/
H A DActivityInfo.java277 * for {@link android.view.WindowManager.LayoutParams#softInputMode
278 * WindowManager.LayoutParams.softInputMode}. If 0 (unspecified),
281 public int softInputMode; field in class:ActivityInfo
296 softInputMode = orig.softInputMode;
323 || configChanges != 0 || softInputMode != 0) {
326 + " softInputMode=0x" + Integer.toHexString(softInputMode));
351 dest.writeInt(softInputMode);
374 softInputMode
[all...]
/frameworks/base/core/java/android/view/
H A DWindowManager.java569 * Mask for {@link #softInputMode} of the bits that determine the
575 * Visibility state for {@link #softInputMode}: no state has been specified.
580 * Visibility state for {@link #softInputMode}: please don't change the state of
586 * Visibility state for {@link #softInputMode}: please hide any soft input
593 * Visibility state for {@link #softInputMode}: please always hide any
599 * Visibility state for {@link #softInputMode}: please show the soft
606 * Visibility state for {@link #softInputMode}: please always make the
612 * Mask for {@link #softInputMode} of the bits that determine the
618 /** Adjustment option for {@link #softInputMode}: nothing specified.
624 /** Adjustment option for {@link #softInputMode}
667 public int softInputMode; field in class:WindowManager.LayoutParams
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManager.java1128 public void onWindowFocus(View rootView, View focusedView, int softInputMode, argument
1132 + " softInputMode=" + softInputMode
1150 focusedView != null, isTextEditor, softInputMode, first,
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java1083 boolean viewHasFocus, boolean isTextEditor, int softInputMode,
1091 + " softInputMode=#" + Integer.toHexString(softInputMode)
1115 switch (softInputMode&WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE) {
1117 if (!isTextEditor || (softInputMode &
1127 } else if (isTextEditor && (softInputMode &
1130 && (softInputMode &
1142 if ((softInputMode &
1153 if ((softInputMode &
1082 windowGainedFocus(IInputMethodClient client, IBinder windowToken, boolean viewHasFocus, boolean isTextEditor, int softInputMode, boolean first, int windowFlags) argument

Completed in 107 milliseconds