Skip to content

Instantly share code, notes, and snippets.

@julianfalcionelli
Created May 14, 2017 23:58
Show Gist options
  • Save julianfalcionelli/0a75b35f5ecc261c99b655cf24eefa20 to your computer and use it in GitHub Desktop.
Save julianfalcionelli/0a75b35f5ecc261c99b655cf24eefa20 to your computer and use it in GitHub Desktop.
Handler & Thread
//...
Thread thread = new Thread(new Runnable() {
@Override
public void run() {
final String result = performBlockingTask();
runOnUiThread(new Runnable() {
@Override
public void run() {
mTextView.setText(result);
}
});
}
});
thread.start();
//...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment