android 模态对话框

```

View view = LayoutInflater.from(this).inflate(R.layout.popwindow_show,null);

AlertDialog dialog =newAlertDialog.Builder(this)

.setView(view)

.create();

dialog.setCancelable(false);

dialog.show();

```

你可能感兴趣的:(android 模态对话框)