Skip to content

Instantly share code, notes, and snippets.

@orhanobut
Created April 3, 2016 13:35
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 orhanobut/27364e06865973ad934fb00e49a89b49 to your computer and use it in GitHub Desktop.
Save orhanobut/27364e06865973ad934fb00e49a89b49 to your computer and use it in GitHub Desktop.
Thread thread = new Thread(new Runnable() {
@Override public void run() {
// your long task
textView.setText("Task 4 Result"); //update view
}
});
thread.start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment