[android-developers] Re: Translucent Activity not calling onStop() on exit

2009-12-04 Thread Kirrrilka
If you take a look at activity lifecycle chart you will see that onStop is called only if activity become invisible But as you said you have translucent activity on top: that's why only onPause is called! RTFM

[android-developers] Re: Translucent Activity not calling onStop() on exit

2009-12-03 Thread Craig Russell
I suppose by putting it into onPause(), it might work, but why does it behave differently? -- 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

[android-developers] Re: Translucent Activity not calling onStop() on exit

2009-12-03 Thread Craig Russell
Well, that worked but I don't entirely understand why. So that activity is being paused when I exit it, but it's still on the activity stack? On Dec 3, 9:22 am, Craig Russell csruss...@gmail.com wrote: I suppose by putting it into onPause(), it might work, but why does it behave differently?