I have some Intent. When intent fires, I want to send a popup notification like an AlertBox and turn screen ON to let User see the notification immediately (I mean without showing a lockscreen).
If you’ve used, for example, HandcentSMS then you understand what I mean (like a popup notification when accept a message)
How to organize this? Any code examples? What kind of permissions I have to use?
Thank you in advance.
Perhaps KeyguardLock will do what you want: popup your notification and then call
disableKeyguard, then re-enable when the user is done or after you time out.Security-wise it is a little risky, but there you go.