Skip to content

Instantly share code, notes, and snippets.

@princessdharmy
Created November 22, 2017 03:03
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 princessdharmy/cfa5e0e8d18566a4b573901eae4d5be4 to your computer and use it in GitHub Desktop.
Save princessdharmy/cfa5e0e8d18566a4b573901eae4d5be4 to your computer and use it in GitHub Desktop.
private class Content extends AsyncTask<Void, Void, Void> {
@Override
protected void onPreExecute() {
super.onPreExecute();
}
@Override
protected Void doInBackground(Void... voids) {
return null;
}
@Override
protected void onPostExecute(Void aVoid) {
super.onPostExecute(aVoid);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment