[android-developers] Re: Keep app from restarting when touching icon from Home screen

2013-05-21 Thread Dori
I think this is an Android bug. I have seen this so many times on differnt devices (more frequently on older ones). Common pattern is more often than not tapping the app icon as normal will launch the MAIN LAUNCHER activity on the top of the existing stack but occasionally will resume - i see

[android-developers] Re: Keep app from restarting when touching icon from Home screen

2011-10-05 Thread Abe Pralle
Same problem here. I've got a Unity app that's launching a video player as a secondary activity. If I hit HOME and then do a regular app launch it resumes Unity but not my video player. If I hit HOME, then long-press HOME and launch the app from the recent list, it resumes on my video player

[android-developers] Re: Keep app from restarting when touching icon from Home screen

2011-07-08 Thread jayesh
Even I am facing same problem..Do you got any fix? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: Keep app from restarting when touching icon from Home screen

2009-03-10 Thread Dianne Hackborn
What you are saying you want is how applications behave by default (try using the standard applications to see). You must have done something different, more than the small snippet of code you included. On Tue, Mar 10, 2009 at 8:44 AM, Hayden hayden.stew...@gmail.com wrote: I want my

[android-developers] Re: Keep app from restarting when touching icon from Home screen

2009-03-10 Thread Hayden
That little bit of code I added was trying to fix the problem, but it obviously didn't work. Should this issue most likely be coming from the manifest file? One thing I did notice was that after I left my app alone for a little while (while in class) and then opened it, it was restoring

[android-developers] Re: Keep app from restarting when touching icon from Home screen

2009-03-10 Thread Dianne Hackborn
I don't see anything obvious; you don't have anything special, so this should work the same as the normal behavior. Could you try running ApiDemos and seeing if that has the behavior you want? If not, what different behavior do you want? On Tue, Mar 10, 2009 at 10:27 AM, Hayden

[android-developers] Re: Keep app from restarting when touching icon from Home screen

2009-03-10 Thread Hayden
I ran the API Demos and they have the behavior I want, which goes back to exactly where I left on when pressing the icon on the home screen. Basically my program goes through these steps when running: title screen -- several ListActivities to gather text -- Display result I don't want the user