本文介绍了如何检测和控制手机锁定/解锁Android上?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想打该电话问一个问题(从数据库),当手机被锁定(锁定=键盘被锁定)以及用户想要解锁。如果答案是正确的那么手机被解锁,否则电话问另一个问题。

I want to make that the phone ask a question(from database) when the phone is locked (locked = the keyboard is locked ) and the user want to unlock. If the answer is correct then the phone is unlocked, else the phone ask another question.

我不知道如何检测解锁和解锁/锁定手机时,我想。

I don't know how to detect the unlock and unlock/lock the phone when I want.

请帮我

推荐答案

您可能要对的和。

DevicePolicyManager dpm = (DevicePolicyManager) context.getSystemService(Context.DEVICE_POLICY_SERVICE);
dpm.lockNow();

有关的检测,就可以按照本教程中的,这是很清楚的。

For the detection, you can follow this tutorial http://chandan-tech.blogspot.fr/2010/10/handling-screen-lock-unlock-in-android.html, it's very clear.

希望它帮助。

这篇关于如何检测和控制手机锁定/解锁Android上?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 17:24