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

/frameworks/base/core/java/android/content/pm/
H A DActivityInfo.java431 * for {@link android.view.WindowManager.LayoutParams#softInputMode
432 * WindowManager.LayoutParams.softInputMode}. If 0 (unspecified),
435 public int softInputMode; field in class:ActivityInfo
466 softInputMode = orig.softInputMode;
494 || configChanges != 0 || softInputMode != 0) {
497 + " softInputMode=0x" + Integer.toHexString(softInputMode));
525 dest.writeInt(softInputMode);
549 softInputMode
[all...]
/frameworks/base/core/java/android/view/
H A DWindowManager.java866 * Mask for {@link #softInputMode} of the bits that determine the
872 * Visibility state for {@link #softInputMode}: no state has been specified.
877 * Visibility state for {@link #softInputMode}: please don't change the state of
883 * Visibility state for {@link #softInputMode}: please hide any soft input
890 * Visibility state for {@link #softInputMode}: please always hide any
896 * Visibility state for {@link #softInputMode}: please show the soft
903 * Visibility state for {@link #softInputMode}: please always make the
909 * Mask for {@link #softInputMode} of the bits that determine the
915 /** Adjustment option for {@link #softInputMode}: nothing specified.
921 /** Adjustment option for {@link #softInputMode}
970 public int softInputMode; field in class:WindowManager.LayoutParams
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManager.java1180 public void onWindowFocus(View rootView, View focusedView, int softInputMode, argument
1184 + " softInputMode=" + softInputMode
1202 focusedView != null, isTextEditor, softInputMode, first,
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java1480 boolean viewHasFocus, boolean isTextEditor, int softInputMode,
1488 + " softInputMode=#" + Integer.toHexString(softInputMode)
1520 (softInputMode & WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST)
1525 switch (softInputMode&WindowManager.LayoutParams.SOFT_INPUT_MASK_STATE) {
1535 } else if (isTextEditor && doAutoShow && (softInputMode &
1552 if ((softInputMode &
1563 if ((softInputMode &
1479 windowGainedFocus(IInputMethodClient client, IBinder windowToken, boolean viewHasFocus, boolean isTextEditor, int softInputMode, boolean first, int windowFlags) argument

Completed in 118 milliseconds