Which of the following is NOT true about class AsyncTask?
Which of the following is NOT true about class AsyncTask?
Class AsyncTask does not need to be created on the UI thread. AsyncTask should be executed on the UI thread through its execute() method, but its instance can be created on any thread. The other statements about subclassing, method overrides, and generic types are correct.
C. Its sub-class override at least two methods: doInBackground, onPostExecute.