Re: [android-developers] AsyncTask never calls onProgressUpdate

2012-01-16 Thread Mark Murphy
Given your AsyncTask declaration, you need onProgressUpdate() to accept Void... as a parameter. You can detect this by adding @Override to it. You might also consider adding @Override to onPostExecute() as well, though your current method signature appears fine. Historically I had been lazy about

[android-developers] AsyncTask never calls onProgressUpdate

2012-01-16 Thread John-Marc Desmarais
Hi, I have the following AsynchTask class but, it fails to execute the onProgressUpdate method when doInBackground is running. That is to say the Log.v(LogName.onProgressUpdate, LogName.onProgressUpdate) never occurs in LogCat. There are two calls to publishProgress. The first is after the authent