Re: [android-developers] Activity remains in focus for some time after calling finish()

2011-08-24 Thread Yahor Paulavets
Hello, Try to use this solution, in our corporate blog: http://softteco.blogspot.com/2011/07/how-to-close-activity-and-all-children.html It helps me to solve issue the issue how to close entire application. Happy coding (: Best regards, Yahor On Wed, Aug 24, 2011 at 8:35 AM, tushar sahni

[android-developers] Activity remains in focus for some time after calling finish()

2011-08-23 Thread Amit
Hi, I am stuck here. I have an activity (say Activity 1) with a button. On click of the button I am starting a new activity (say Activity 2 )and then calling finish(). But what I see is, before starting Activity2, Activity1 remains in the focus for a while (5-7 secs approximately) and then it

Re: [android-developers] Activity remains in focus for some time after calling finish()

2011-08-23 Thread Dianne Hackborn
onStop is not called until the other activity has been displayed and is idle. If it is taking a long time to show, run the profiler on your code to see what you are doing that is so slow. On Tue, Aug 23, 2011 at 11:42 AM, Amit magic.man.a...@gmail.com wrote: Hi, I am stuck here. I have an

Re: [android-developers] Activity remains in focus for some time after calling finish()

2011-08-23 Thread tushar sahni
Hi I have to support multiple resolutions for the game that i have to develop,How can i do this,One Resolution is 320*480 and other is 480 x 800 pixels I have added the following lines in the manifest for supporting to multiple screens supports-screens android:resizeable=true