Skip to content

Instantly share code, notes, and snippets.

@hboregio
Last active January 2, 2016 00:59
Show Gist options
  • Save hboregio/8227668 to your computer and use it in GitHub Desktop.
Save hboregio/8227668 to your computer and use it in GitHub Desktop.
public class MiActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
MiAsyncTask task = new MiAsyncTask(new Callback() {
public void finished() {
Toast.makeText(MiActivity.this, “Tarea terminada.”, Toast.LENGTH_SHORT).show();
}
});
task.execute((Void) null);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment