How to detect if users stop typing in EditText android
问题 I have an EditText field in my layout. I want to perform an action when the user stops typing in that edittext field. I have implemented TextWatcher and use its functions @Override public void beforeTextChanged(CharSequence s, int start, int count, int after) { } @Override public void onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter) { } @Override public void afterTextChanged(Editable editable) { } The function onTextChanged and afterTextChanged get called just