我有一个应用程序,当按下按钮时,会出现一个包含列表的对话框,在选择列表中的某个项目后,会出现一个数字选择器对话框。我想要发生的是,在用户从数字选择器对话框中选择一个数字后,只有数字选择器对话框会关闭,而对话框仍然处于打开状态。
到目前为止,这是我的代码。
这是第一个对话框(带有列表的对话框)的代码:
private void generateUnitDialog(String[] productUnit) {
final CharSequence[] items = productUnit;
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Make your selection");
builder.setPositiveButton("Confirm", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
// Handle Confirm action here
}
});
builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
// Handle cancel action here
}
});
builder.setItems(items, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int item) {
// Do something with the selection
Toast.makeText(getApplicationContext(),
"Item Click detected", Toast.LENGTH_SHORT)
.show();
generateQuantityDialog();
}
});
builder.setCancelable(false);
AlertDialog alert = builder.create();
alert.show();
}
When a certain list item is selected, the numberpicker dialog then pops up using this code:
public int generateQuantityDialog(){
final Dialog d = new Dialog(com.angelo.orderform.OrderForm.this);
d.setTitle("Choose Quantity");
d.setContentView(R.layout.dialog);
Button b1 = (Button) d.findViewById(R.id.button1);
Button b2 = (Button) d.findViewById(R.id.button2);
final NumberPicker np = (NumberPicker) d.findViewById(R.id.numberPicker1);
np.setMaxValue(100000);
np.setMinValue(1);
np.setWrapSelectorWheel(true);
//np.setOnValueChangedListener(this);
b1.setOnClickListener(new OnClickListener(){
@Override
public void onClick(View v) {
//tv.setText(String.valueOf(np.getValue()));
d.dismiss();
}
});
b2.setOnClickListener(new OnClickListener(){
@Override
public void onClick(View v) {
d.dismiss();
}
});
d.show();
return(np.getValue());
}
用户选择某个号码后,号码选择器对话框以及列表中的那个对话框都会关闭。我希望带有列表的对话框继续存在。
显然, setCancellable(false) 没有帮助。
有任何想法吗?即使这是一种不同的方法,我也愿意倾听。