我有一个活动FragmentDialog
.在onResume
这个对话框中,我通过代码将它的高度和重量设置为80%和90%:
WindowManager.LayoutParams layoutParams = new WindowManager.LayoutParams(); layoutParams.copyFrom(getDialog().getWindow().getAttributes()); layoutParams.width = (int)(screenWidth * 0.9); layoutParams.height = (int)(screenHeight * 0.8); getDialog().getWindow().setAttributes(layoutParams);
它完美地工作,背景有阴影,前景FragmentDialog
有适当的尺寸.问题是 - 如何SnackBar
在FragmentDialog
没有阴影的情况下在屏幕底部显示不受(阴影,活动视图)的影响?有没有办法在后台活动中禁用特定视图的阴影FragmentDialog
?