After the SDK has been upgraded to 1.5, when the text input box (EDITTEXT and its subclasses) has the focus, it pops up the system's own soft keyboard
in order to implement some of the custom functions, a little research is done on the following
* When there are multiple edittext in layout and the Android:singleline property of each control is set to True, the text on the soft keyboard's enter key becomes "Next", Press the next edittext will automatically get the focus ("next" function); When the last control gets the focus, the text on the ENTER key becomes "done" and the soft keyboard is automatically hidden when it is pressed
* Set EditText IME Options property to a different value, you can display different text or patterns on the ENTER key
actionnone: Enter, press the cursor to the next line
Actiongo:go,
Actionsearch: A magnifying glass
actionsend:send
actionnext:next
Actiondone:done, hide soft keyboard, even if not the last text input box
Can monitor events with Setoneditoractionlistener
Imeoption in the Android IME