Toast toast; private void toast(String msg) { if (toast != null) toast.cancel(); toast = Toast.makeText(getBaseContext(), msg, Toast.LENGTH_SHORT); toast.show(); }