Created
June 8, 2015 19:44
-
-
Save adavis/26b7673536a4f6832eb7 to your computer and use it in GitHub Desktop.
A simple live template for Android Studio that surrounds the current selection with an Async Task.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
new AsyncTask<Void, Void, Void>() { | |
@Override | |
protected Void doInBackground(Void... params) { | |
$SELECTION$ | |
return null; | |
} | |
@Override | |
protected void onPostExecute(Void result) { | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment