当前位置:  开发笔记 > 编程语言 > 正文

如何在FragmentDialog下显示SnackBar?

如何解决《如何在FragmentDialog下显示SnackBar?》经验,为你挑选了0个好方法。

我有一个活动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有适当的尺寸.问题是 - 如何SnackBarFragmentDialog没有阴影的情况下在屏幕底部显示不受(阴影,活动视图)的影响?有没有办法在后台活动中禁用特定视图的阴影FragmentDialog

推荐阅读
手机用户2502851955
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有