Done Key Not Showing Up On Keyboard
I am making an Android app and want the done key to show up on the keyboard when the user is typing into the keyboard. This is the XML code for the EditText:
Solution 1:
You will not get done
by adding imeOptions
.
Add the below attribute to your EditText:
android:singleLine="true"
This will make your EditText a single line and you will see the Done
button if that is the only EditText or last EditText. If there are multiple EditText items, then you will see Next
button.
Post a Comment for "Done Key Not Showing Up On Keyboard"