android dialog transparent

后端 未结 6 1309
[愿得一人]
[愿得一人] 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:44

    To give a translucent effect, say 50% opacity, use:

    Drawable d = new ColorDrawable(Color.BLACK);
    d.setAlpha(130);
    mDialog.getWindow().setBackgroundDrawable(d);
    

    '130' can be changed (0-255) to acheive desired opacity.

提交回复
热议问题