android dialog transparent

后端 未结 6 1302
[愿得一人]
[愿得一人] 2020-11-28 09:14

I want to get rid of the border in my dialog box and make it look absolutly transparent, as if the image is on the top of screen.

6条回答
  •  [愿得一人]
    2020-11-28 09:41

    try this:-

    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();
    

提交回复
热议问题