Does status PENDING mean that an AysncTask‘s execute method has not been called? Or is it possible that it has been called but doInBackground has not been called yet and it is about to be called.
Does status PENDING mean that an AysncTask ‘s execute method has not been called?
Share
If you look at the source, the task’s status is PENDING until
execute()has been called (line 584).