Skip to content

Instantly share code, notes, and snippets.

@vbarthel-fr
Last active December 22, 2015 05:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vbarthel-fr/6421821 to your computer and use it in GitHub Desktop.
Save vbarthel-fr/6421821 to your computer and use it in GitHub Desktop.
public class MyActivity extends Activity {
private Toast mTextToast;
...
private void makeToast(String message) {
if (mTextToast != null) {
mTextToast.cancel();
}
mTextToast = Toast.makeText(this, message, Toast.LENGTH_SHORT);
mTextToast.show();
}
private void hideToast() {
if (mTextToast != null) {
mTextToast.cancel();
mTextToast = null;
}
}
...
@Override
protected void onPause() {
super.onPause();
hideToast();
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment