Android Borderless Dialog

后端 未结 8 1848
囚心锁ツ
囚心锁ツ 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:16

    I added a transparent pixel to drawable and used the following code :

    dialog.getWindow().setBackgroundDrawableResource(R.drawable.transpix);
    

提交回复
热议问题