My requirement is when user swipes(destroys) my application from Recent tab, I want to show a toast.
For this I tried showing the toast in onDestroy
of the MainActivity, But the toast does not show up. I am using the following code :
Toast.makeText(this, "Toast", Toast.LENGTH_SHORT).show();
Can you help what could be the reason?