How to make any view background transparent?

前端 未结 7 1525
慢半拍i
慢半拍i 2021-02-14 06:45

Attribute of RelativeLayout android:background=\"@android:color/transparent\" is not working . I just want to make its background transparent?

7条回答
  •  面向向阳花
    2021-02-14 07:22

    for your layout set

    android:background="#00000000"
    

    00 - Red

    00 - Green 00 - Blue 00 - Opacity/Alpha....to specify transparency

    for eg. :- #FF000050 will give you red color with 50% transparency

提交回复
热议问题