Android BottomSheetDialog底部内容显示不全和背景圆角问题解决

BottomSheetDialog 弹出底部内容显示不全 需要滑动问题以及显示后背景圆角不显示问题解决使用以下style

dialog需要的高度

600dp

高度显示全后发现背景圆角无法显示,设置圆角背景不生效 原因:由于它上面蒙了一层布局 design_bottom_sheet是系统的布局,直接找到它,然后给它设全透明就好了

第一种设置透明方式

getDelegate().findViewById(android.support.design.R.id.design_bottom_sheet)
                .setBackgroundColor(
                getContext().getResources().getColor(android.R.color.transparent));

第二种设置透明方式直接在style中加入

@android:color/transparent

完整的style使用
super(context,R.style.BottomSheetDialog);


    

    

你可能感兴趣的:(android,android,studio)