I want to clear the edit text which is basically a password field when app goes to background or when recent apps button in menu is pressed.
I do this way -
@Override
public void onPause() {
super.onPause();
if (password != null) {
password.getText().clear();
}
}
But my problem is when the recent apps button in menu is pressed, the app goes to half background and I can see the password still. How do I clear it in this scenario?