I'm experiencing the problem described in this Android issue: http://code.google.com/p/android/issues/detail?id=4536

Simply put, after pressing the HOME button, android prevents services and broadcast-receivers from calling startActivity for 5 seconds.

I've also noticed that (well, theoretically), having the following permission :

"android.permission.STOP_APP_SWITCHES"

allows you to call resumeAppSwitches (which is defined in ActivityManagerService). Looking at the latest version of ActivityManagerService, this code is removed.

The question: How to launch an activity using startActivity without this 5 second delay?

link|improve this question
You should contact the guys at WidgetLocker (they used at least to read this thread: forum.xda-developers.com/showthread.php?t=825553 ). They have a way to bypass those 5 seconds but I think it requires root. Maybe they'll tell you something useful? – Aleadam Apr 17 '11 at 20:43
feedback

3 Answers

up vote 3 down vote accepted

I don't think there is a way to do it with the current APIs. I think that is how they intended it to work so that an app cannot force itself back open when the user exits with a home key press. You could add the home/ launcher intent to the filter for whatever activity it is you are trying to start. Then the user would have the choice to basically treat that app as though it is a homescreen. Then it would get launched with no delay at all whenever the user presses the home button(They'd have to select it from the list that will pop up asking which app they want to use to complete this action, but they could check always use this app to take this step away in the future.)

link|improve this answer
Thanks. My app is 'Wave Launcher' which is (as the name suggests) a launcher by itself. It is controlled by a background service and not an activity, hence the problem. (it doesn't replace the default home app, it's an add-on). Since I've already thoroughly investigated this issue, I'm looking for much less trivial answer. – Lior Apr 8 '11 at 20:17
I was working on a different type of project but was interested in trying to get this effect (trigger a startActivity() call to happen when the home button was pressed.) not too long ago. I never came up with a way to get rid of the few second delay. If you figure it out do post it here for us =). – Tim Apr 8 '11 at 20:22
I've decided to accept your answer. Although there's no actual solution, and although I haven't learned something new from it. It's probably the correct answer. This was my assumption to begin with, and posting the question here was a long-shot. Thanks. – Lior Apr 14 '11 at 21:44
I guess you've looked at the simple Activity.onUserLeaveHint() and this has the 5second delay – Blundell Apr 19 '11 at 22:24
feedback

Best practices state that you should avoid launching an activity from a Service or BroadcastReceiver.

http://developer.android.com/guide/practices/design/seamlessness.html#interrupt

link|improve this answer
I'm very familiar with the best-practices. But we're not talking about some esoteric feature. It's the core essence of the product, and although the activity is launched from a service, it is launched as a direct response to user interaction, so the guidelines are definitely obeyed. – Lior Apr 14 '11 at 21:43
feedback

I am intrigued by this "feature" also and how to avoid it. Reading the post: http://code.google.com/p/android/issues/detail?id=4536 (read the comment #10).

I quote the relevant part below:

Workarounds are:

1) Don't use an activity, do everything from a service.

2) Have some kind of intermediate Home (WidgetLocker HomeHelper, QuickDesk, PowerStrip, etc). These do a startActivity immediate to start the "real" Home and this bypasses the 5 second rule. This is a bad idea as Android prioritizes keeping the system Home in memory but not whatever secondary Home the intermediate set. So it can lead to Launcher reloads which is no fun. Plus it's very confusing to users.

3) Root can start activities during this period.

Among those, I believe the best way to do it is to create a "Home Helper"-like activity. So, instead of starting a new activity, you would call this one instead. This is specially true, since you are creating a launcher app.

As I said in my previous comment to the question, I would contact the WidgetLocker developer about it. Alternatively, you can use APK Manager to see how he implemented it (he even encouraged the use of the APK Manager to create different mods to his app, the link to the xda-developers thread is in the comment above)

link|improve this answer
BTW, there is another example of this here: appsbeyond.com/apps/screen-suite – Aleadam Apr 18 '11 at 16:34
Thanks for your answer. My app is a launcher add-on, not a launcher replacement. I'm very familiar with how to write a pre-home home (Already have an app in the market that can act like one). Generally speaking, I think this is a bad approach, mostly due to launcher reloads that you've mentioned. The best thing I'm taking from your answer is to launch apps as root. I'll have to check how this is done. – Lior Apr 20 '11 at 6:08
I'm afraid there are not too many options available. The problem with the root is that it will greatly limit how many people will be able to run it. – Aleadam Apr 20 '11 at 7:00
feedback

Your Answer

 
or
required, but never shown

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