Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 17th, 2012  |  syntax: None  |  size: 0.25 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Toasts in AndEngine Scenes
  2. public void gameToast(final String msg) {
  3.     this.runOnUiThread(new Runnable() {
  4.         @Override
  5.         public void run() {
  6.            Toast.makeText(MyMainActivity.this, msg, Toast.LENGTH_SHORT).show();
  7.         }
  8.     });
  9. }