我正在使用BottomSheetDialogFragment
,并且在右上/左上的圆角处进行圆角处理,并且可以正常工作,但是我注意到在圆角后方,它不透明并且非常烦人。
在以下屏幕截图中很明显:
如何使它们透明?
答案 0 :(得分:0)
您必须更改bottom sheet theme
才能获得最佳回合布局
创建自定义可绘制background_bottom_sheet_dialog_fragment.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
android:topLeftRadius="8dp"
android:topRightRadius="8dp" />
<padding android:top="0dp" />
<solid android:color="@color/white" />
</shape>
然后使用可绘制背景作为背景,在styles.xml上覆盖bottomSheetDialogTheme:
<!--Bottom sheet-->
<style name="BottomSheet" parent="@style/Widget.Design.BottomSheet.Modal">
<item
name="android:background">@drawable/background_bottom_sheet_dialog_fragment
</item>
</style>
<style name="BaseBottomSheetDialog"
parent="@style/Theme.Design.Light.BottomSheetDialog">
<item name="android:windowIsFloating">false</item>
<item name="bottomSheetStyle">@style/BottomSheet</item>
</style>
<style name="BottomSheetDialogTheme" parent="BaseBottomSheetDialog" />
这将更改底部工作表的背景布局
注意:从底部对话框视图布局中删除所有背景
答案 1 :(得分:0)
创建如下所示的自定义样式。
<style name="AppBottomSheetDialogTheme" parent="Theme.Design.Light.BottomSheetDialog">
<item name="bottomSheetStyle">@style/AppModalStyle</item>
</style>
<style name="AppModalStyle" parent="Widget.Design.BottomSheet.Modal">
<item name="android:background">@drawable/rounded_corner_top_only</item>
</style>
然后在自定义片段中覆盖此方法。
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//bottom sheet round corners can be obtained but the while background appears to remove that we need to add this.
setStyle(DialogFragment.STYLE_NO_FRAME,R.style.AppBottomSheetDialogTheme);
}
这正在与我合作,希望它将与您合作。
答案 2 :(得分:0)
在您的BottomSheetDialogFragment中覆盖它
@Override
public void setupDialog(Dialog dialog, int style) {
View view = View.inflate(getContext(), R.layout.YOUR_LAYOUT, null);
dialog.setContentView(view);
((View) view.getParent()).setBackgroundColor(getResources().getColor(android.R.color.transparent));
}