私は作成しAlertDialog
、設定し、パラメータを設定setOnCanceledOnTouchOutside
しsetCancelable
ますが、非表示のダイアログの外側をクリックします。多分誰かが私を助けることができますか?
dialog = new AlertDialog.Builder(getContext()).setView(table).setTitle(R.string.order_start_title)
.setNegativeButton(R.string.dialog_cancel, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
onOrderStartCancel(context);
}
}).setPositiveButton(R.string.dialog_start_order, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
onOrderStart(context, goodsTypeId, goodType);
}
}).create();
dialog.setCanceledOnTouchOutside(true);
dialog.setCancelable(true);
dialog.show();