Android Borderless Dialog

后端 未结 8 1824
囚心锁ツ
囚心锁ツ 2020-12-02 14:29

I have created an AlertDialog using AlertDialog.Builder, but the Dialog border takes up too much space on the screen. How do I remove the border? I have tried using another

8条回答
  •  爱一瞬间的悲伤
    2020-12-02 15:02

    try this :D

     Dialog popUpView= new Dialog(this);
     popUpView.getWindow().setBackgroundDrawable(new ColorDrawable(0));
    

提交回复
热议问题