我正在寻找一种方法来获取通知,如果用户在Android锁定屏幕上输入了错误的密码(系统锁定屏幕 - 而不是我自己的应用程序中的锁定屏幕)。在这种情况下是否存在被解雇的意图?
非常感谢先生。
答案 0 :(得分:3)
我正在寻找一种方法来获取通知,如果用户在Android锁定屏幕上输入了错误的密码(系统锁定屏幕 - 而不是我自己的应用程序中的锁定屏幕)。在这种情况下是否存在被解雇的意图?
如果您使用设备管理API实施了DeviceAdminReceiver
,则会使用onPasswordFailed()
调用它。
答案 1 :(得分:-5)
您可以在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;