Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I disable the keyguard when a broadcast receiver is activated by screen_on, so that when it occurs the user sees an activity that I have started behind it? (The activity is running already...)

I have been trying the following code from a broadcast receiver triggered by screen off...

KeyguardManager  myKeyGuard = (KeyguardManager)getSystemService(Context.KEYGUARD_SERVICE);
myLock = myKeyGuard.newKeyguardLock();
myLock.disableKeyguard();

It doesn't seem to be working though as it is. When I turn the screen on, I still have to manually unlock the keyguard on the phone to reveal the activity behind it.

share|improve this question
I've come across some code that has used exitKeyguardSecurely() in addition to this. I have not been able to get it to work yet though so I am now setting the flag FLAG_DISMISS_KEYGUARD for my activity. – Ryan Nov 22 '10 at 15:57

2 Answers

i would recommend using the window flags dismiss_keyguard or show_when_locked if you have a window that needs to come over the top of the lockscreen right at wakeup.

http://developer.android.com/reference/android/view/WindowManager.LayoutParams.html#FLAG_SHOW_WHEN_LOCKED

how you use this is as follows (called in onCreate before setting layout)

getWindow().addFlags(WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD);
share|improve this answer
6  
I know this is an old post, but the flags did not work for me no matter where I put them, the keyguard manager on the other hand always seems to work. Just a point to note for other readers – Idistic Jul 13 '11 at 18:39
It's true that using the flags is the 'recommended' solution, however, you'll find that they are far from perfect in real-life usage. For example, with flags android will briefly 'flash' the keyguard when moving the activity out of focus. It's minor, but grating. Disabling the keyguard completely doesn't have that issue. – Stephan Tual Apr 14 '12 at 23:12
up vote 1 down vote accepted

I think I figured out what I did wrong. It seems like it was just a tag error in my manifest when using the disable_keyguard permission. It's working correctly now that I corrected the manifest.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.