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.

friend. I want to lock the screen in my app while clicking the button and I am using the following code:

KeyguardManager keyguardManager = (KeyguardManager)getSystemService(Activity.KEYGUARD_SERVICE); 
KeyguardLock lock = keyguardManager.newKeyguardLock(KEYGUARD_SERVICE); 
lock.reenableKeyguard();      

but it is not working. I am also setting the permission in manifest as well.

Can any one please help. How to solve this problem?

share|improve this question
2  
define "it is not working" – Selvin May 17 '11 at 10:21
if you want to lock the screen then you have to override buttons like back button, search,menu etc. – Android Developer May 17 '11 at 11:20
@Selvin, it means keyguard does not appear, the command lock.reenableKeyguard is ignored. – greenoldman Oct 6 '12 at 10:08

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.