Code Not Continueing To Onpostexecute
I am not able to access onpostexecute can you know why ? I got this Log.d('e', 'response.'); in my system log then it continue to another activity. I am not having any error. OkHt
Solution 1:
method does not override subclass –
The signature of your onPostExecute
doesn't match the generic Result
parameter of your AsyncTask subclass. Here
AsyncTask<Params, Progress, Result>
Result
is the type of the result of the background computation. Since your method has a String
as parameter, you have to be consistent, and replace whatever you declared with String
.
Post a Comment for "Code Not Continueing To Onpostexecute"