如何在Android中设置登录对话框?

时间:2013-02-01 01:45:39

标签: android login android-alertdialog

我试图在我的编辑按钮中添加登录信息。我想要做的是,当用户选择要编辑的项目时,然后点击编辑按钮,弹出窗口将显示询问该人的用户名和密码。我尝试创建一个登录对话框,但我一直在失败。

这是我的代码:

public void btn_edit_click(View v){
        LayoutInflater li = LayoutInflater.from(context);
        View prompt = li.inflate(R.layout.prompts, null);
        AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context);
        alertDialogBuilder.setView(prompt);
        final String username = getIntent().getStringExtra("USERNAME");
        final EditText user = (EditText) prompt.findViewById(R.id.loginEmail);
        final EditText pass = (EditText) prompt.findViewById(R.id.loginPassword);
        final TextView msg = (TextView) prompt.findViewById(R.id.login_error);
        final String password = pass.getText().toString();
        user.setText(getIntent().getStringExtra("USERNAME"));
        if(this.selected_website != null){
            alertDialogBuilder.setCancelable(false)
            .setPositiveButton("OK", new DialogInterface.OnClickListener() {
                @Override
                public void onClick(DialogInterface dialog, int id) {   
                    DBAdapter dbUser = new DBAdapter(PasswordActivity.this);
                    dbUser.open();
                    if(dbUser.Login(username, password))
                    {
                        show_add_layout();

                    }
                    else
                    {
                        msg.setText("Username or Password is incorrect");
                    }
                }
                });

                    alertDialogBuilder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
                        @Override
                        public void onClick(DialogInterface dialog, int id) {
                            dialog.cancel();

                        }
                    });
                    alertDialogBuilder.show();  
                    }                   
                    else{
                        show_mesg("Please select item to edit.");
                    }
    }

当我单击“确定”按钮时,它会显示“用户名或密码不正确”的声明。但我输入了正确的用户名和密码。对此有何帮助?

2 个答案:

答案 0 :(得分:3)

一小时后,我设法解决了自己的问题。所以我想分享这个答案,所以如果有人会遇到我刚才遇到的问题,他们可以将此作为一个很好的参考。

我做的是,我尝试使用我的Login类的代码。但我不再要求用户名了。我问的只是密码。但是对于用户名,我从之前的登录中获得了Intent。所以,就像是,您使用用户名“john316”登录,密码为“123abc”,然后您将被重定向到主类。在列表视图中选择一个项目,当您单击编辑时,会出现一个弹出窗口,询问您的密码以进行验证。但是,任何密码都不起作用。它将从数据库和您登录的用户名(即“john316”)调用密码,如果正确,您将被重定向到编辑类。如果它是错的,它会告诉你,“密码是不正确的。”并会阻止你去那个页面。为了缩短这个解释,这里是代码:

public void btn_edit_click(View v){
    LayoutInflater li = LayoutInflater.from(context);
    View prompt = li.inflate(R.layout.prompts, null);
    AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context);
    alertDialogBuilder.setView(prompt);
    final String username = getIntent().getStringExtra("USERNAME");
    final EditText pass = (EditText) prompt.findViewById(R.id.loginPassword);
    final TextView msg = (TextView) prompt.findViewById(R.id.login_error);

    if(this.selected_website != null){
        alertDialogBuilder.setCancelable(false)
        .setPositiveButton("OK", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int id) {   
                String password = pass.getText().toString();

                try{
                    if(username.equals(getIntent().getStringExtra("USERNAME")) && password.length() > 0)
                    {
                        DBAdapter dbUser = new DBAdapter(PasswordActivity.this);
                        dbUser.open();

                        if(dbUser.Login(username, password))
                        {
                            show_add_layout();
                        }else{
                            msg.setText("Password is incorrect");
                        }
                        dbUser.close();
                    }

                }catch(Exception e)
                {
                    Toast.makeText(PasswordActivity.this,e.getMessage(), Toast.LENGTH_LONG).show();
                }
            }
            });

                alertDialogBuilder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int id) {
                        dialog.cancel();

                    }
                });
                alertDialogBuilder.show();  
                }                   
                else{
                    show_mesg("Please select item to edit.");
                }
}

这就是它的工作原理。我感谢那些回答我问题并给了我一点帮助的人。我希望这个人也能帮助别人。谢谢大家!

答案 1 :(得分:0)

似乎你没有像passwor那样正确地获得用户名,因为你正在使用它。

  final String username = getIntent().getStringExtra("USERNAME");

但是您在为userEmail提交的Dialog EditText文件中输入了密码等用户名。您应该使用它来获取输入的userName

final String username  = user.getText().toString();

在DB

中检查之前,您应该验证用户名,Passowrd为null,为空