在Android中用户检测锁屏错误密码

时间:2014-04-05 11:38:38

标签: android android-service android-broadcast android-windowmanager screen-lock

我正在构建一个安全应用程序,我需要知道用户是否提供了错误的密码。假设用户手机被模式锁定系统锁定,不幸的是用户忘记了模式密码。当用户5次错误模式时,将被罚30秒。 我需要抓住那个点球赛事。 在我的应用程序中,我甚至需要做一些任务(为了用户的安全)。 请帮帮我,

3 个答案:

答案 0 :(得分:13)

您可以设置一个DeviceAdminReceiver,通知密码尝试失败,以及尝试失败后成功进行密码尝试。这包含在the documentation of Android's device administration APIs

请注意,在您获得这些活动之前,用户必须同意允许您的应用通过“设置”应用作为设备管理员。

This sample project演示了如何监听这些事件,以及设置密码质量策略。关键部分是:

答案 1 :(得分:2)

我在Android工作室使用API​​级别22做同样的事情。但什么也没发生。它显示错误 - “安装com.example.sourav.myfirstapp DEVICE SHELL COMMAND:pm install -r“/data/local/tmp/com.example.sourav.myfirstapp”     pkg:/data/local/tmp/com.example.sourav.myfirstapp 失败[INSTALL_PARSE_FAILED_MANIFEST_MALFORMED]“

这是我的项目细节 - 管理员接收主要活动 -

public class AdminReceiver extends DeviceAdminReceiver {

@Override
public void onPasswordChanged(Context ctxt, Intent intent) {
    DevicePolicyManager mgr=
            (DevicePolicyManager)ctxt.getSystemService(Context.DEVICE_POLICY_SERVICE);
    int msgId;

    if (mgr.isActivePasswordSufficient()) {
        msgId=R.string.compliant;
    }
    else msgId = R.string.not_compliant;

    Toast.makeText(ctxt, msgId, Toast.LENGTH_LONG).show();
}

@Override
public void onPasswordFailed(Context ctxt, Intent intent) {
    Toast.makeText(ctxt, "u will never break!", Toast.LENGTH_LONG)
            .show();
    String tag="tag";
    Log.v(tag,"this massage from error" );
}

@Override
public void onPasswordSucceeded(Context ctxt, Intent intent) {
    Toast.makeText(ctxt, "good u enterd", Toast.LENGTH_LONG)
            .show();
    String tag="tag";
    Log.v(tag, "this massage from success");
}
}

清单 -

 <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 package="com.example.sourav.myfirstapp" >



 <application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme" >

    <receiver
        android:name="AdminReceiver"
        android:permission="android.permission.BIND_DEVICE_ADMIN">
        <meta-data
            android:name="android.app.device_admin"
            />

        <intent-filter>

            <action    android:name="android.app.action.ACTION_PASSWORD_FAILED"/>
            <action     android:name="android.app.action.ACTION_PASSWORD_SUCCEEDED"/>
        </intent-filter>
    </receiver>
</application>

 </manifest>




Metadata-

 <device-admin xmlns:android="http://schemas.android.com/apk/res/android">

   <uses-policies>
    <limit-password/>

    <watch-login/>
</uses-policies>

答案 2 :(得分:1)

  1. 第一步是让用户获得DEVICE_ADMIN权限。

  2. 编写自己的扩展DeviceAdminReceiver的类。为此,您需要导入import android.app.admin.DeviceAdminReceiver;

  3. 覆盖您的案例中的方法:

    @Override
    public void onPasswordFailed(Context context, Intent intent) {
        Log.d("Hello", "onPasswordFailed");
    }
    @Override
    public void onPasswordSucceeded(Context context, Intent intent) {
        Log.d("Hello", "onPasswordSucceeded");
    }