android meaning of @null in xml attribute

后端 未结 2 1396
北荒
北荒 2021-01-31 06:49

I found the following attribute in one xml layout:

android:background=\"@null\"

What is the meaning of @null? What is the differen

2条回答
  •  攒了一身酷
    2021-01-31 07:24

    What i have observed if i do android:background="@null"or android:background="@android:color/transparent" both have same effect, they just remove the background of the view, so you will see the background colour of the view which is beneath this view.

提交回复
热议问题