Home | History | Annotate | Download | only in location

Lines Matching full:asynctask

74 should call the method from the {@link android.os.AsyncTask#doInBackground
75 doInBackground()} method of an {@link android.os.AsyncTask}.
97 To create the background task, define a subclass of {@link android.os.AsyncTask} that calls
119 * A subclass of AsyncTask that calls getFromLocation() in the
127 AsyncTask<Location, Void, String> {
207 {@link android.os.AsyncTask#doInBackground doInBackground()} returns the result of the address
209 {@link android.os.AsyncTask#onPostExecute onPostExecute()}, where you do further processing
210 on the results. Since {@link android.os.AsyncTask#onPostExecute onPostExecute()}
216 AsyncTask<Location, Void, String> {
240 To get the address, call {@link android.os.AsyncTask#execute execute()}. For example, the