Skip to content

Instantly share code, notes, and snippets.

@ochim
Created November 20, 2017 04:43
Show Gist options
  • Select an option

  • Save ochim/51979faa133909db96b700389146eb21 to your computer and use it in GitHub Desktop.

Select an option

Save ochim/51979faa133909db96b700389146eb21 to your computer and use it in GitHub Desktop.
[Android]ToastはUI Threadで使う
runOnUiThread(new Runnable() {
  public void run() {
    Toast.makeText(context, "Error Exception", Toast.LENGTH_SHORT).show();
  }
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment