Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I read a lot on how to save my instance state or how to deal with my activity getting destroyed during screen rotation.

There seem to be a lot of possibilities but I haven't figured out which one works best for retrieving results of an AsyncTask.

I have some AsyncTasks that are simply started again and call the isFinishing() method of the activity and if the activity is finishing they wont update anything.

The problem is that I have one Task that does a request to a web service that can fail or succeed and restarting the task would result in a financial loss for the user.

How would you solve this? What are the advantages or disadvantages of the possible solutions?

share|improve this question
1  
See my answer here. You might also find this information about what setRetainInstance(true) actually does helpful. – Timmmm Oct 4 '12 at 11:57

8 Answers

up vote 12 down vote accepted

My first suggestion would be to make sure you actually need your activity to be reset on a screen rotation (the default behavior). Every time I've had issues with rotation I've added this attribute to my <activity> tag in the AndroidManifest.xml, and been just fine.

android:configChanges="keyboardHidden|orientation"

It looks weird, but what it does it hand off to your onConfigurationChanged() method, if you don't supply one it just does nothing other than re-measure the layout, which seems to be a perfectly adequate way of handling the rotate most of the time.

share|improve this answer
2  
But that will prevent the Activity from changing the layout. And therefore forces the user to use his device in a specific orientation dictated by your application and not by his needs. – Janusz Apr 12 '10 at 9:52
33  
Using this technique prevents you from easily using configuration specific resources. For instance, if you want your layout or drawables or strings or whatever to be different in portrait and landscapes, you'll want the default behavior. Overriding the config change should only be done in very specific cases (a game, a web browser, etc.) and not out of laziness or convenience because you are constraining yourself. – Romain Guy Apr 12 '10 at 18:55
19  
Well that's just it, Romain. "if you want your layout or drawables or strings or whatever to be different in portrait and landscapes, you'll want the default behavior", I believe that is a much rarer use case than you envisage. What you call "very specific cases" is most developers I believe. Using relative layouts that work in all dimensions is best practice and it's not that hard. Talk of laziness is highly misguided, these techniques are to improve user experience not reduce development time. – Jim Blackler Apr 12 '10 at 21:04
1  
I have found that this works perfect for LinearLayout, but when using RelativeLayout it does not redraw the layout correctly when switching to landscape mode (at least not on the N1). See this questions: stackoverflow.com/questions/2987049/… – JohnRock Jun 8 '10 at 11:59
3  
I agree with Romain (he knows what he is talking about, he develops the OS). What happens when you want to port your application to a tablet and your UI look horrible when stretched? If you take the approach of this answer you will need to recode your whole solution because you went with this lazy hack. – Austyn Mahoney Sep 2 '11 at 18:36
show 4 more comments

You can check out how I handle AsyncTasks and orientation change at code.google.com/p/shelves. There are various ways to do it, the one I chose in this app is to cancel any currently running task, save its state and start a new one with the saved state when the new Activity is created. It's easy to do, it works well and as a bonus it takes care of stopping your tasks when the user leaves the app.

You can also use onRetaingNonConfigurationInstance() to pass your AsyncTask to the new Activity (be careful about not leaking the previous Activity this way though.)

share|improve this answer
1  
i tried it and rotating during book search interrupts and gives me less results than when not rotating, too bad – max4ever Jan 31 '12 at 10:31
I could not find a single usage of AsyncTask in that code. There is a class UserTask that looks similar. Does this project predate AsyncTask? – devconsole May 13 at 13:54
1  
AsyncTask came from UserTask. I originally wrote UserTask for my own apps and later turned it into AsyncTask. Sorry about that I forgot it got renamed. – Romain Guy May 13 at 23:25

This is the most interesting question I've seen regarding to Android!!! Actually I've been already looking for the solution during the last months. Still haven't solved.

Be careful, simply overriding the

android:configChanges="keyboardHidden|orientation"

stuff is not enough.

Consider the case when user receives a phone call while your AsyncTask is running. Your request is already being processed by server, so the AsyncTask is awaiting for response. In this moment your app goes in background, because the Phone app has just come in foreground. OS may kill your activity since it's in the background.

share|improve this answer

Why don't you always keep a reference to the current AsyncTask on the Singleton provided by Android?

Whenever a task starts, on PreExecute or on the builder, you define:

((Application) getApplication()).setCurrentTask(asyncTask);

Whenever it finishes you set it to null.

That way you always have a reference which allows you to do something like, onCreate or onResume as appropriated for your specific logic:

this.asyncTaskReference = ((Application) getApplication()).getCurrentTask();

If it's null you know that currently there is none running!

:-)

share|improve this answer
Will this work? Has anyone tested this? Will the task still get killed by the system if a phone call interruption happens or if we navigate to a new activity and then go back? – Robert Jun 29 '11 at 9:41
3  
Application instance has its own life cycle - it can be killed by OS too, so this solution may cause a hard-to-reproduce bug. – Arhimed Sep 14 '11 at 11:30
5  
I thought: if Application is killed, the whole app is killed (and thus, all AsyncTasks too)? – manmal Dec 18 '11 at 9:25
I think that application can be killed without all asynctasks being (very rare). But @Arhimed with some easy-to-do verifications on the start and end of each asynctask you can avoid the bugs. – NeTeInStEiN Dec 18 '11 at 18:35

To my point of view, it's better to store asynctask via onRetainNonConfigurationInstance decoupling it from the current Activity object and binding it to a new Activity object after the orientation change. Here I found a very nice example how to work with AsyncTask and ProgressDialog.

share|improve this answer

In Pro android 4. author has suggest a nice way, that you should use weak reference.

Weak reference note

share|improve this answer

The most proper way to this is to use a fragment to retain the instance of the async task, over rotations.

Here is a link to very simple example making it easy to follow integrate this technique into your apps.

https://gist.github.com/daichan4649/2480065

share|improve this answer
Here's another tutorial that makes use of retained fragments: blogactivity.wordpress.com/2011/09/01/proper-use-of-asynctask – devconsole May 27 at 12:38

One thing to consider is whether the result of the AsyncTask should be available only to the activity that started the task. If yes, then Romain Guy's answer is best. If it should be available to other activities of your application, then in onPostExecute you can use LocalBroadcastManager.

LocalBroadcastManager.getInstance(getContext()).sendBroadcast(new Intent("finished"));

You will also need to make sure that activity correctly handles situation when broadcast is sent while activity is paused.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.