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

/frameworks/base/core/java/android/content/pm/
H A DActivityInfo.java337 * for {@link android.view.WindowManager.LayoutParams#softInputMode
338 * WindowManager.LayoutParams.softInputMode}. If 0 (unspecified),
341 public int softInputMode; field in class:ActivityInfo
356 softInputMode = orig.softInputMode;
383 || configChanges != 0 || softInputMode != 0) {
386 + " softInputMode=0x" + Integer.toHexString(softInputMode));
411 dest.writeInt(softInputMode);
434 softInputMode
[all...]
/frameworks/base/core/java/android/view/
H A DWindowManager.java657 * Mask for {@link #softInputMode} of the bits that determine the
663 * Visibility state for {@link #softInputMode}: no state has been specified.
668 * Visibility state for {@link #softInputMode}: please don't change the state of
674 * Visibility state for {@link #softInputMode}: please hide any soft input
681 * Visibility state for {@link #softInputMode}: please always hide any
687 * Visibility state for {@link #softInputMode}: please show the soft
694 * Visibility state for {@link #softInputMode}: please always make the
700 * Mask for {@link #softInputMode} of the bits that determine the
706 /** Adjustment option for {@link #softInputMode}: nothing specified.
712 /** Adjustment option for {@link #softInputMode}
776 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.java1135 boolean viewHasFocus, boolean isTextEditor, int softInputMode,
1143 + " softInputMode=#" + Integer.toHexString(softInputMode)
1167 switch (softInputMode&WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE) {
1169 if (!isTextEditor || (softInputMode &
1179 } else if (isTextEditor && (softInputMode &
1182 && (softInputMode &
1194 if ((softInputMode &
1205 if ((softInputMode &
1134 windowGainedFocus(IInputMethodClient client, IBinder windowToken, boolean viewHasFocus, boolean isTextEditor, int softInputMode, boolean first, int windowFlags) argument

Completed in 121 milliseconds