0

可能重复:
Android PopupWindow 活动时背景模糊或变暗

当我的自定义弹出窗口显示在我的活动中时,我想模糊或淡化屏幕。我使用弹出窗口类制作了自定义弹出窗口。但是当弹出显示时,我的活动布局不会模糊或变暗或褪色,所以请帮助我实现这一点。提前致谢

LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View layoutInflate = inflater.inflate(R.layout.custom_dialog_layout, relativeLayout);     
PopupWindow tagPopupWindow tagPopupWindow = new PopupWindow(layoutInflate, width, LayoutParams.WRAP_CONTENT);
4

1 回答 1

2

当 Android PopupWindow active 时,似乎与Blur or dim background重复。

我还建议您改用 Dialog。

于 2012-10-18T06:04:01.953 回答