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?
lock.reenableKeyguardis ignored. – greenoldman Oct 6 '12 at 10:08