android dialog transparent

后端 未结 6 1303
[愿得一人]
[愿得一人] 2020-11-28 09:14

I want to get rid of the border in my dialog box and make it look absolutly transparent, as if the image is on the top of screen.

6条回答
  •  遥遥无期
    2020-11-28 09:41

    The simplest way of doing this is that in your DialogFragment's onCreate() method, call

    setStyle(DialogFragment.STYLE_NO_FRAME, 0);
    

    And if the view you returned in onCreateView does not have a background specified, the dialog's background will be just transparent.

    Why? DialogFragment.STYLE_NO_FRAME means that OS will not do any drawing in the window of the dialog, and your view is 100% responsible for drawing everything about the dialog.

提交回复
热议问题