我想在向用户弹出显示时模糊或变暗活动的背景,并请它弹出非对话框,所以请告诉我弹出非对话框的解决方案。我使用下面的代码来显示弹出窗口
popupWindow = new PopupWindow(layoutInflate, width, LayoutParams.WRAP_CONTENT);
// popupWindow.setFocusable(true);
// popupWindow.showAsDropDown(layoutInflate);
//getWindow().addFlags(WindowManager.LayoutParams.FLAG_BLUR_BEHIND);
popupWindow.setOutsideTouchable(true);
popupWindow.showAtLocation(layoutInflate, Gravity.CENTER, 0, 0);