0

In Android, when fetching data in Async task, how do you refresh the GUI when data is received in Asynch task?

MikeN
  • 45,039
  • 49
  • 151
  • 227

1 Answers1

3

There's an onPostExecute() method in the AsyncTask. That's where you can refresh GUI.

kmdupr33
  • 620
  • 6
  • 14