我正在使用android native keyguardmanager类。我每次都在onresume中调用createConfirmDeviceCredentialIntent()。
打开活动>锁定设备>解锁设备>快速锁定。设备锁定屏幕上显示keyguardmanager窗口。如何关闭窗口&我不想在设备锁定屏幕上显示它。它应该在设备锁定屏幕下执行所有操作。 我的代码:
keyguardManager = (KeyguardManager) getSystemService(KEYGUARD_SERVICE);
Intent screenLockIntent = null;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
screenLockIntent = keyguardManager.createConfirmDeviceCredentialIntent("My App", "");
}
this.startActivityForResult(screenLockIntent,LOCK_REQUEST_CODE);