Java android.view.inputmethod EditorInfo fields, constructors, methods, implement or subclass

Example usage for Java android.view.inputmethod EditorInfo fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for android.view.inputmethod EditorInfo.

The text is from its open source code.

Field

intIME_MASK_ACTION
Set of bits in #imeOptions that provide alternative actions associated with the "enter" key.
intIME_ACTION_UNSPECIFIED
Bits of #IME_MASK_ACTION : no specific action has been associated with this editor, let the editor come up with its own if it can.
intIME_ACTION_NONE
Bits of #IME_MASK_ACTION : there is no available action.
intIME_ACTION_GO
Bits of #IME_MASK_ACTION : the action key performs a "go" operation to take the user to the target of the text they typed.
intIME_ACTION_SEARCH
Bits of #IME_MASK_ACTION : the action key performs a "search" operation, taking the user to the results of searching for the text they have typed (in whatever context is appropriate).
intIME_ACTION_SEND
Bits of #IME_MASK_ACTION : the action key performs a "send" operation, delivering the text to its target.
intIME_ACTION_NEXT
Bits of #IME_MASK_ACTION : the action key performs a "next" operation, taking the user to the next field that will accept text.
intIME_ACTION_DONE
Bits of #IME_MASK_ACTION : the action key performs a "done" operation, typically meaning there is nothing more to input and the IME will be closed.
intIME_ACTION_PREVIOUS
Bits of #IME_MASK_ACTION : like #IME_ACTION_NEXT , but for moving to the previous field.
intIME_FLAG_NO_FULLSCREEN
Flag of #imeOptions : used to request that the IME never go into fullscreen mode.
intIME_FLAG_NAVIGATE_PREVIOUS
Flag of #imeOptions : like #IME_FLAG_NAVIGATE_NEXT , but specifies there is something interesting that a backward navigation can focus on.
intIME_FLAG_NAVIGATE_NEXT
Flag of #imeOptions : used to specify that there is something interesting that a forward navigation can focus on.
intIME_FLAG_NO_EXTRACT_UI
Flag of #imeOptions : used to specify that the IME does not need to show its extracted text UI.
intIME_FLAG_NO_ENTER_ACTION
Flag of #imeOptions : used in conjunction with one of the actions masked by #IME_MASK_ACTION .
intIME_NULL
Generic unspecified type for #imeOptions .

Constructor