Dialog with transparent background in Android

前端 未结 20 2654
孤城傲影
孤城傲影 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条回答
  •  -上瘾入骨i
    2020-11-22 15:23

    Somehow Zacharias solution didn't work for me so I have used the below theme to resolve this issue...

    
    

    One can set this theme to dialog as below

    final Dialog dialog = new Dialog(this, R.style.DialogCustomTheme); 
    

    Enjoy!!

提交回复
热议问题