You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Another thing, I noticed AsyncTask.execute() is used in CommentsListActivity. For your information, the document specified that since honeycomb or API 11, the tasks will be executed on a single thread. Since there could be multiple tasks registered at the same time (at least two in MyLoginTask#onPostExecute), so using executeOnExecutor() may speed up the tasks and avoid potential blocking.
The text was updated successfully, but these errors were encountered:
Another thing, I noticed AsyncTask.execute() is used in CommentsListActivity. For your information, the document specified that since honeycomb or API 11, the tasks will be executed on a single thread. Since there could be multiple tasks registered at the same time (at least two in MyLoginTask#onPostExecute), so using executeOnExecutor() may speed up the tasks and avoid potential blocking.
The text was updated successfully, but these errors were encountered: