Can we switch off an Android phone programmatically?
I am using following snippet but it didn't work for me.
KeyguardManager keyguardManager = (KeyguardManager) getSystemService(Activity.KEYGUARD_SERVICE);
KeyguardLock lock = keyguardManager.newKeyguardLock(KEYGUARD_SERVICE);
lock.disableKeyguard(); // to disable
lock.reenableKeygaurd();// to enable
and I used the permission also.
question from:
https://stackoverflow.com/questions/3745523/programmatically-switching-off-android-phone 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…