Dialog with transparent background in Android

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

    use this code it's works with me :

        Dialog dialog = new Dialog(getActivity(),android.R.style.Theme_Translucent_NoTitleBar);
        dialog.show();
    

提交回复
热议问题