我已经按照支持更新23.2成功地实现了底页,但是在扩展底页时我没有得到稀松的颜色(窗口暗淡)效果。
我看到coordinatorlayout
包含一个getscrimcolor
方法但没有设置。
最佳答案
BottomSheetDialog dialog = new BottomSheetDialog(getActivity());
dialog.setContentView(R.layout.dialog_bottom_sheet);
dialog.show();
我发现的解决方案是使用
BottomSheetDialog
类,该类已经包含类似于常规对话框的暗淡的窗口标志。不知道这是否是正确的方法,但目前它仍然有效。