I am working on an android app where i need to download some images and start a slide show. For downloading the images i am using a AsynTask, as soon as the images are downloaded i am using an handler to start the slide show. But during orientation change i am not able to control the handler. Because the handler object is defined with AsyncTask class.
The below is the rough scenario of what i have done:
Class A extends Activity
Class B async = new ClassB(this);
async.execute();
Class B extends AsyncTask implements OnPageChangeListener, OnTouchListener
onPreExecute() -------Nothing in this method
doInBackground -------I am downloading the images here
onPostExecute ---------Handler starts here and runs for every 5 seconds for implementing Slide Show
Now the Problem:
During orientation change i have made sure that AsyncTask is called only once or else it downloads the images again, because of this the handler is not running during orientation change.
The first handler object which was started, it keeps running but the changes does not reflect on the screen.
I was thinking of implementing in a way that the images are downloaded by using the AsyncTask and once the downloading is done, ClassA should gain focus and handler should be implemented in ClassA(only when images are downloaded).
