How to remove border from Dialog?

后端 未结 5 1501
太阳男子
太阳男子 2020-12-04 19:59

I have an activity which is shown in a dialog:

\"\"

In order to remove border and rounded corners, i tr

5条回答
  •  一生所求
    2020-12-04 20:45

    Without creating a custom background drawable and adding a special style just add one line to your code:

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

提交回复
热议问题