Android BottomSheetDialogFragment在圆角后面有颜色

问题描述 投票:6回答:1

我正在使用BottomSheetDialogFragment,我正在绕着右上/左上角,它正常工作但是我注意到在圆角后面,它不透明,而且非常烦人。

它在下面的截图中很明显:

enter image description here

我如何让它们透明?

android bottom-sheet
1个回答
0
投票

您必须更改bottom sheet theme才能实现顶部圆形布局

创建自定义drawable 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>

然后使用drawable作为背景覆盖styles.xml中的bottomSheetDialog主题:

<!--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" />

这将更改底部工作表的背景布局

注意:从底部工作表对话框视图布局中删除所有背景


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);
    }

这与我合作,希望它能与你合作。

© www.soinside.com 2019 - 2024. All rights reserved.