I have EditText ans, I set OnEditorActionListenerto do something when the enter key is pressed. My stupid question: how to make the ENTER key green, like on Maps?
OnEditorActionListener
Here is the answer I found here:
Specifying a virtual keyboard type for EditText in XML
Play with ime options
Thanks guys for the help. I solved this by placing android:imeOptions="actionGo"it android:inputType="textImeMultiLine"in the layout as EditText attributes. Both are necessary!
android:imeOptions="actionGo"
android:inputType="textImeMultiLine"
Thanks again!
, this ( "EditText" ).