8

我正在构建一个安全应用程序,我需要知道用户是否提供了不正确的密码。假设用户手机被图案锁定系统锁定,不幸用户忘记了图案密码。当用户输入错误图案5次时,将被罚30秒。我需要赶上那个点球事件。在我的应用程序中,当这种情况发生时,我必须做一些任务(为了用户的安全)。请帮我,

4

3 回答 3

13

您可以设置一个DeviceAdminReceiver将在密码尝试失败以及在尝试失败后发生的成功密码尝试时收到通知的通知。这在Android 设备管理 API 的文档中有所介绍。

请注意,在您收到这些事件之前,用户必须同意允许您的应用通过“设置”应用充当设备管理员。

此示例项目演示了侦听这些事件,以及设置密码质量策略。关键部分是:

于 2014-04-05T11:44:15.977 回答
2

我在 API level-22 的 android studio 上做同样的事情。但什么也没发生。它显示错误-“正在安装 com.example.sourav.myfirstapp 设备外壳命令: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>
于 2015-10-17T03:56:27.757 回答
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");
    }
    
于 2015-06-05T07:42:57.030 回答