How to remove transparent dark background outside of dialog box

前端 未结 4 610
无人共我
无人共我 2020-12-31 04:02

I want to remove a transparent dark backgrond outside of dialog box.

\"enter

<

4条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-31 04:40

    Hope this will help you...

    dialog.getWindow().getDecorView().setBackgroundResource(android.R.color.transparent);
    dialog.getWindow().setDimAmount(0.0f);
    dialog.show();
    

提交回复
热议问题