Ответ 1
Попробуйте что-то вроде этого:
mEditText.setOnFocusChangeListener(new OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus)
Toast.makeText(getApplicationContext(), "unfocus", 2000).show();
}
});