I\'ve seen many examples of how to do this, but I can\'t figure how to implement it in my code.
I am using this code.
I have updated the url, so it will receive
You have three protected methods in an AsyncTask that can interact with the UI.
onPreExecute()
doInBackground()onPostExecute()
doInBackground() completesonProgressUpdate()
doInBackground() calls it with publishProgress()If in your case the Task runs for a lot longer than the 30 seconds you want to refresh you would want to make use of onProgressUpdate() and publishProgress(). Otherwise onPostExecute() should do the trick.
See the official documentation for how to implement it.