Dialog with transparent background in Android

前端 未结 20 2667
孤城傲影
孤城傲影 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条回答
  •  Happy的楠姐
    2020-11-22 15:21

    Add this code

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

    Or this one instead:

    dialog.getWindow().setBackgroundDrawableResource(android.R.color.transparent);
    

提交回复
热议问题