updated readme

This commit is contained in:
Tony Tam 2014-02-21 17:22:48 -08:00
parent cae8296999
commit d764328026

View File

@ -71,6 +71,9 @@ class WordOfTheDayAsyncTask extends AsyncTask<Void, Void, WordOfTheDay> {
}
```
You can now invoke the async task anywhere in your app. Of course you'll want to do
something more in your `onPostExecute` function.
```java
new WordOfTheDayAsyncTask().execute();
```