Dialog with transparent background in Android

前端 未结 20 2461
孤城傲影
孤城傲影 2020-11-22 15:02

How do I remove the black background from a dialog box in Android. The pic shows the problem.

\"enter

20条回答
  •  名媛妹妹
    2020-11-22 15:26

    In case you extended the DialogFrament class, you can set the theme with:

    setStyle(DialogFragment.STYLE_NORMAL, R.style.customDialogTheme);
    

    And then make the custom theme in your styles.xml file (see @LongLv's answer for parameters)

    Don't forget to add true if you want the dialog to close if the user touches outside the dialog.

提交回复
热议问题