Hello,

I have an application which requires a login at the beginning (this is
the first activity). When the user logs in, I keep his credentials in
the application (I extended android.application to add a field called
'key'). I would like to clear this field from memory (from application
instance) an go back to the login activity.

I see the following possibilities:
- Add a broadcast receiver to catch all possible event (call, click on
menu, click on back, lock the phone ...) which clear the key field and
launch the login activity
- Use clearTaskOnLaunch for all activities except the login activity.
But then until my application takes the focus again the key stays in
the application object. (It seems it doesn't work with the go back
button, maybe I need to use no history also)
- Detect for each activity in all onPause or onStop events when
application will leave the foreground
 to clear the key field and launch the login activity

The best would be to have a kind of OnPause method at application
level but I think it doesn't exist

I would appreciate any help on this problem.

ps: I already posted it once but never saw it on the discussions list.

Cheers,
Kim

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to