Searched defs:inputType (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
H A DInputTypeActivity.java142 private View buildEntryView(int inputType, int label) { argument
148 editText.setInputType(inputType);
/frameworks/base/core/java/android/view/inputmethod/
H A DEditorInfo.java41 public int inputType = TYPE_NULL; field in class:EditorInfo
246 pw.println(prefix + "inputType=0x" + Integer.toHexString(inputType)
270 dest.writeInt(inputType);
292 res.inputType = source.readInt();
/frameworks/base/core/java/android/widget/
H A DTextView.java453 int inputType = EditorInfo.TYPE_NULL;
687 inputType = a.getInt(attr, mInputType);
744 if ((inputType & (EditorInfo.TYPE_MASK_CLASS | EditorInfo.TYPE_MASK_VARIATION))
766 mInputType = inputType != EditorInfo.TYPE_NULL
767 ? inputType
777 mInputType = inputType != EditorInfo.TYPE_NULL
778 ? inputType : EditorInfo.TYPE_CLASS_TEXT;
779 } else if (inputType != EditorInfo.TYPE_NULL) {
780 setInputType(inputType, true);
781 singleLine = (inputType
2984 isPasswordInputType(int inputType) argument
2992 isVisiblePasswordInputType(int inputType) argument
[all...]

Completed in 108 milliseconds