Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have activities A and B. The A is the one with LAUNCHER intent-filter (i.e. the activity that is started when we click the app icon on home screen).

A launches B using startActivity(new Intent(A.this, B.class)).

When the user has the B activity open, and then put my application into the background, and later my application's process is killed, when the user starts my application again, B is opened instead of A.

This caused a force close in my app, because A is the activity that initializes the resources my app needs, and when B tried to access the uninitialized resources, B crashes.

Do you have any suggestions what should I do in this situation?

share|improve this question

2 Answers

up vote 5 down vote accepted

Well you should really have activity B initialize your resources too. But you can put android:clearTaskOnLaunch="true" in your manifest for activity A to have the launcher always go to that activity.

share|improve this answer

Have you tried setting Flag FLAG_ACTIVITY_NEW_TASK while creating intent. In your case please try startActivity(new Intent(A.this, B.class).setFlags(Intent.FLAG_ACTIVITY_NEW_TASK))

share|improve this answer
Sorry, but would be so kind as to explain what you mean by A.this, B.class? What would the actual syntax be? B is normally expressed as "com.mypackage.FOO" (or whatever I called it in the manifest), and A? I'm not even sure what you mean by A. I tried ... new Intent(this, "com.mypackage.FOO".getClass().setFlags ... but that obviously didn't work (I was just trying it for due diligence sake). – Dr.Dredel Nov 17 '10 at 4:27
A.this refers to this in your statement. B.Class refers to the class which you want to invoke. getclass() will return the runtime class of an object, in this case i think i will return the base class. – Vamsi Nov 18 '10 at 12:43

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.