我有这个应用程序,当你登录时,你会看到一个列表,比如名字。我也有一个添加、更新和删除按钮。当我点击编辑按钮时,它将进入编辑页面,您可以在那里编辑名称。现在,当您点击更新按钮时,我有一个 AlertDialog,它将再次询问用户的用户名和密码。这是我制作的代码:
public void btn_add_update_click(View v){
hideKeyboard();
final String username = getIntent().getStringExtra("USERNAME");
final String str_sitename = this.edt_sitename.getText().toString();
String str_username = this.edt_username.getText().toString();
String str_password = this.edt_password.getText().toString();
LayoutInflater li = LayoutInflater.from(context);
View prompt = li.inflate(R.layout.prompts, null);
AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context);
alertDialogBuilder.setView(prompt);
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 (str_sitename.equals("")){
//edt_sitename.requestFocus();
show_mesg("Please insert sitename.");
}else if (str_username.equals("")){
//edt_username.requestFocus();
show_mesg("Please insert username.");
}else if (str_password.equals("")){
//edt_password.requestFocus();
show_mesg("Please insert password.");
}else{
if (selected_website!=null){
selected_website.setUser(username);
selected_website.setSitename(str_sitename);
selected_website.setUsername(str_username);
selected_website.setPassword(str_password);
alertDialogBuilder.setCancelable(false)
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
DBAdapter dbUser = new DBAdapter(PasswordActivity.this);
dbUser.open();
if(dbUser.Login(username, password))
{
datasource.updateWebsite(selected_website);
show_mesg(str_sitename + " updated.");
hideKeyboard();
selected_website = null;
show_list_layout();
}
else{
msg.setText("Username or Password is not correct.");
}
}
})
.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});
AlertDialog alertDialog = alertDialogBuilder.create();
alertDialog.show();
}
else{
datasource.addWebsite(username, str_sitename,str_username,str_password);
hideKeyboard();
show_mesg(str_sitename + " added.");
selected_website = null;
show_add_layout();
}
}
}
但是当我运行它时,它不起作用。确定和取消按钮未显示。对此有何建议?