3

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

这是我的代码:

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.");
                    }
    }

当我单击“确定”按钮时,它给了我“用户名或密码不正确”的语句。但是我输入了正确的用户名和密码。对此有什么帮助吗?

4

2 回答 2

4

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

我所做的是,我尝试使用登录类的代码。但我不再要求用户名了。我问的只是密码。但是对于用户名,我从之前的登录中获得了 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.");
                }
}

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

于 2013-02-01T04:45:44.437 回答
0

似乎您没有像 passwor 那样正确获取 User Name ,因为您正在使用它。

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

但是您在为 userEmail 归档的对话框 EditText 中输入用户名(如密码)。您应该使用它来获取输入的用户名

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

您还应该验证 User Name , Passowrd 为 null ,在 DB 中检查之前为空

于 2013-02-01T01:58:48.573 回答