Activity with transparent background

前端 未结 6 477
南旧
南旧 2020-12-09 18:33

what I want to achieve is activity with dialog-like transparency with 100% visibility of RelativeLayout content. This is activity\'s xml:



        
6条回答
  •  自闭症患者
    2020-12-09 19:04

    Try to set

        getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
    

    in your activity.

    You can also try to do this in a style:

     
    

提交回复
热议问题