[android-developers] Re: Detecting exit and open of an app with multiple activities

2012-01-18 Thread Streets Of Boston
I'm not sure if you can do that, but if your remote service, i.e. your server, needs authentication, consider using Http authentication. You'll send a token in the headers of your HTTP requests and handle non-authorized responses (HTTP Status=401) from your server appropriately. I.e. make your

[android-developers] Re: Detecting exit and open of an app with multiple activities

2012-01-18 Thread TonyD
Hi Mark, Thanks for the quick reply. I am implementing a sort of authentication where the user has to authenticate every time they reenter the app, but not if they are already in the app browsing around to different activities. You mention that each activity should be independent; however, I have