Java android.text InputType fields, constructors, methods, implement or subclass

Example usage for Java android.text InputType fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for android.text InputType.

The text is from its open source code.

Field

intTYPE_MASK_CLASS
Mask of bits that determine the overall class of text being given.
intTYPE_MASK_VARIATION
Mask of bits that determine the variation of the base content class.
intTYPE_NULL
Special content type for when no explicit type has been specified.
intTYPE_CLASS_TEXT
Class for normal text.
intTYPE_TEXT_FLAG_CAP_CHARACTERS
Flag for #TYPE_CLASS_TEXT : capitalize all characters.
intTYPE_TEXT_FLAG_CAP_WORDS
Flag for #TYPE_CLASS_TEXT : capitalize the first character of every word.
intTYPE_TEXT_FLAG_CAP_SENTENCES
Flag for #TYPE_CLASS_TEXT : capitalize the first character of each sentence.
intTYPE_TEXT_FLAG_AUTO_CORRECT
Flag for #TYPE_CLASS_TEXT : the user is entering free-form text that should have auto-correction applied to it.
intTYPE_TEXT_FLAG_AUTO_COMPLETE
Flag for #TYPE_CLASS_TEXT : the text editor (which means the application) is performing auto-completion of the text being entered based on its own semantics, which it will present to the user as they type.
intTYPE_TEXT_FLAG_MULTI_LINE
Flag for #TYPE_CLASS_TEXT : multiple lines of text can be entered into the field.
intTYPE_TEXT_FLAG_IME_MULTI_LINE
Flag for #TYPE_CLASS_TEXT : the regular text view associated with this should not be multi-line, but when a fullscreen input method is providing text it should use multiple lines if it can.
intTYPE_TEXT_FLAG_NO_SUGGESTIONS
Flag for #TYPE_CLASS_TEXT : the input method does not need to display any dictionary-based candidates.
intTYPE_TEXT_VARIATION_NORMAL
Default variation of #TYPE_CLASS_TEXT : plain old normal text.
intTYPE_TEXT_VARIATION_URI
Variation of #TYPE_CLASS_TEXT : entering a URI.
intTYPE_TEXT_VARIATION_EMAIL_ADDRESS
Variation of #TYPE_CLASS_TEXT : entering an e-mail address.
intTYPE_TEXT_VARIATION_SHORT_MESSAGE
Variation of #TYPE_CLASS_TEXT : entering a short, possibly informal message such as an instant message or a text message.
intTYPE_TEXT_VARIATION_LONG_MESSAGE
Variation of #TYPE_CLASS_TEXT : entering the content of a long, possibly formal message such as the body of an e-mail.
intTYPE_TEXT_VARIATION_PERSON_NAME
Variation of #TYPE_CLASS_TEXT : entering the name of a person.
intTYPE_TEXT_VARIATION_POSTAL_ADDRESS
Variation of #TYPE_CLASS_TEXT : entering a postal mailing address.
intTYPE_TEXT_VARIATION_PASSWORD
Variation of #TYPE_CLASS_TEXT : entering a password.
intTYPE_TEXT_VARIATION_VISIBLE_PASSWORD
Variation of #TYPE_CLASS_TEXT : entering a password, which should be visible to the user.
intTYPE_TEXT_VARIATION_WEB_EDIT_TEXT
Variation of #TYPE_CLASS_TEXT : entering text inside of a web form.
intTYPE_TEXT_VARIATION_FILTER
Variation of #TYPE_CLASS_TEXT : entering text to filter contents of a list etc.
intTYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS
Variation of #TYPE_CLASS_TEXT : entering e-mail address inside of a web form.
intTYPE_TEXT_VARIATION_WEB_PASSWORD
Variation of #TYPE_CLASS_TEXT : entering password inside of a web form.
intTYPE_CLASS_NUMBER
Class for numeric text.
intTYPE_NUMBER_FLAG_SIGNED
Flag of #TYPE_CLASS_NUMBER : the number is signed, allowing a positive or negative sign at the start.
intTYPE_NUMBER_FLAG_DECIMAL
Flag of #TYPE_CLASS_NUMBER : the number is decimal, allowing a decimal point to provide fractional values.
intTYPE_NUMBER_VARIATION_NORMAL
Default variation of #TYPE_CLASS_NUMBER : plain normal numeric text.
intTYPE_NUMBER_VARIATION_PASSWORD
Variation of #TYPE_CLASS_NUMBER : entering a numeric password.
intTYPE_CLASS_PHONE
Class for a phone number.
intTYPE_CLASS_DATETIME
Class for dates and times.
intTYPE_DATETIME_VARIATION_TIME
Default variation of #TYPE_CLASS_DATETIME : allows entering only a time.