如果用户在 Android 锁定屏幕(系统锁定屏幕 - 不是我自己的应用程序中的锁定屏幕)上输入错误密码,我正在寻找一种获取通知的方法。在这种情况下是否存在被解雇的现有意图?
非常感谢。
如果用户在 Android 锁定屏幕(系统锁定屏幕 - 不是我自己的应用程序中的锁定屏幕)上输入错误密码,我正在寻找一种获取通知的方法。在这种情况下是否存在被解雇的现有意图?
非常感谢。
如果用户在 Android 锁定屏幕(系统锁定屏幕 - 不是我自己的应用程序中的锁定屏幕)上输入错误密码,我正在寻找一种获取通知的方法。在这种情况下是否存在被解雇的现有意图?
如果您DeviceAdminReceiver
使用设备管理 API 实现了一个,它将使用onPasswordFailed()
.
您可以在 android 应用程序中创建自己的对话框来显示错误消息。下面是代码:
AlertDialog alertDialog = new AlertDialog.Builder(LoginActivity.this).create();
// Setting Dialog Title
alertDialog.setTitle("Error");
// Setting Dialog Message
alertDialog.setMessage("Not A User");
// Setting Icon to Dialog
alertDialog.setIcon(R.drawable.inputerror);
// Setting OK Button
alertDialog.setButton("OK",new DialogInterface.OnClickListener()
{
public void onClick(DialogInterface dialog, int which)
{
// Write your code here to execute after dialog
// closed
Toast.makeText(getApplicationContext(),"Not A Valid User", Toast.LENGTH_SHORT).show();
}
});
// Showing Alert Message
alertDialog.show();
return;