Home | History | Annotate | Download | only in keyboard

Lines Matching refs:editorInfo

23 import android.view.inputmethod.EditorInfo;
58 private static final int IME_ACTION_CUSTOM_LABEL = EditorInfo.IME_MASK_ACTION + 1;
66 private final EditorInfo mEditorInfo;
76 int mode, EditorInfo editorInfo, boolean clobberSettingsKey, boolean shortcutKeyEnabled,
84 mEditorInfo = editorInfo;
89 mCustomActionLabel = (editorInfo.actionLabel != null)
90 ? editorInfo.actionLabel.toString() : null;
140 return (mEditorInfo.imeOptions & EditorInfo.IME_FLAG_NAVIGATE_NEXT) != 0;
144 return (mEditorInfo.imeOptions & EditorInfo.IME_FLAG_NAVIGATE_PREVIOUS) != 0;
158 final int actionId = mEditorInfo.imeOptions & EditorInfo.IME_MASK_ACTION;
159 if ((mEditorInfo.imeOptions & EditorInfo.IME_FLAG_NO_ENTER_ACTION) != 0) {
160 return EditorInfo.IME_ACTION_NONE;
203 public static boolean equivalentEditorInfoForKeyboard(EditorInfo a, EditorInfo b) {