Dialog with transparent background in Android

前端 未结 20 2750
孤城傲影
孤城傲影 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:39

    In my case solution works like this:

    dialog_AssignTag.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
    

    And Additionally in Xml of custom dialog:

    android:alpha="0.8"
    

提交回复
热议问题