我的方案是,主屏幕上有一个按钮,当用户点击按钮时,会出现一个带有textedit和2按钮的对话框。我的问题是,当我尝试从编辑文本中获取值时似乎没有任何反应,并且值始终为NULL。
这是我的代码:我在主要活动
中声明了对话框private void popup() {
AlertDialog.Builder builder;
AlertDialog alertDialog;
LayoutInflater inflater = (LayoutInflater) this.getSystemService(LAYOUT_INFLATER_SERVICE);
View dialog = inflater.inflate(R.layout.isbn_dialog,
(ViewGroup) findViewById(R.id.layout_root));
// The edit text from dialog
isbnInput = (EditText)dialog.findViewById(R.id.isbn);
builder = new AlertDialog.Builder(this);
builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
}
});
builder.setPositiveButton("Add", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
Toast.makeText(getApplicationContext(), isbnInput.getText().toString(), Toast.LENGTH_LONG);
}
});
builder.setView(dialog);
alertDialog = builder.create();
alertDialog.setTitle("Enter ISBN Number");
alertDialog.show();
}
那么如何才能正确地从对话框编辑文本中获取值?
答案 0 :(得分:1)
这一行必须是,
Toast.makeText(getApplicationContext(), isbnInput.getText().toString(), Toast.LENGTH_LONG).show();
你忘记了show()
Toast里面的按钮点击..
试试..
答案 1 :(得分:0)
我没有看到使用AlertDialog的编辑文本参考。
尝试使用此功能,与您相同,而且可以肯定的是我可以正确地使用editText
AlertDialog.Builder alert = new AlertDialog.Builder(this);
alert.setMessage(getResources().getString(R.string.my_email));
final EditText input = new EditText(this);
final LinearLayout layout = new LinearLayout(this);
LayoutParams params = new LayoutParams(
(int) getResources().getDimension(R.dimen.simple_alert_width_normal),
LayoutParams.WRAP_CONTENT);
params.setMargins(10, 0, 10, 0);
layout.addView(input, params);
alert.setView(layout);
alert.setPositiveButton(R.string.OK,
new DialogInterface.OnClickListener() {
// DO some thing here
});
alert.setNegativeButton(R.string.cancel,
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
// Canceled.
}
});
alert.show();