I have an EditText. When i click on it, it becomes focusable. I will type the input text to be entered into the EditText. I want to implement a listener for EditText, so that when i stop typing, it should automatically save that text into the database instead of having a button. How to have a listener for EditText to listen that typing is stopped or not?
Share
set edittext imeOption
By using something like this,
Alternatively, you can use the
OnEditorActionListenerinterface to avoid the anonymous inner class.