[android-developers] Re: detecting application loss of screen control

2009-10-12 Thread David Bernstein
This is true. However, my application, which comprises many activities, is the one starting (most) activities not started by the HOME key, which can't be intercepted (googling android intercept home key will bring up multiple discussions of this). I would prefer not to have my app needlessly

[android-developers] Re: detecting application loss of screen control

2009-10-09 Thread RichardC
As I understand it you are right, you need to react to onPause in each activity (see also onSaveInstanceState()). The reason behind this is an end-user Task can comprise more than one Applicaton/Process with each Application consisting of more than one Activity. To give a made up example