Skip to content

Instantly share code, notes, and snippets.

@wakim
Last active February 18, 2016 12:37
Show Gist options
  • Select an option

  • Save wakim/d8a444409108b28e549c to your computer and use it in GitHub Desktop.

Select an option

Save wakim/d8a444409108b28e549c to your computer and use it in GitHub Desktop.
new Thread() {
@Override
public void run() {
final String result = doHeavyWork(url);
mTextView.post(new Runnable() {
@Override
public void run() {
mTextView.setText(result);
}
});
}.start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment