Dialog with transparent background in Android

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

    Dialog pop up fill default black background color or theme color so you need to set TRANSPARENT background into Dialog. Try below code:-

    final Dialog dialog = new Dialog(this);
    dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
    dialog.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
    dialog.setContentView(R.layout.splash);
    dialog.show();
    

提交回复
热议问题