How to remove transparent dark background outside of dialog box

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

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

\"enter

<

4条回答
  •  遥遥无期
    2020-12-31 04:41

    In addition to chuky's answer;

    If your minSdkVersion value is greater than or equal to 14, you can use setDimAmount() method.

    dialog.getWindow().setDimAmount(float amount);
    

    According to reference;

    amount The new dim amount, from 0 for no dim to 1 for full dim.

    or

    As stated previously, you can clear window flag.

提交回复
热议问题