When the user clicks on the EditView, Android opens the keyboard so that user can write in the EditView.
The problem is, when the user is done writing, there is no way to hide the keyboard. The user has to press the back button to hide the keyboard.
Is there a way to display a Done button on the keyboard that will hide the keyboard?
Use TextView.setImeOptions and pass it actionDone.
like
textView.setImeOptions(EditorInfo.IME_ACTION_DONE);