is there any diff @null Vs #00000000

后端 未结 4 1081
野性不改
野性不改 2021-01-07 20:06

Is there any difference between @null Vs transparent(#00000000)

in my layout I set android:background\"@color/transparent\" but its showing some other

4条回答
  •  星月不相逢
    2021-01-07 20:24

    Yes, there is.

    • @null means no background.
    • #00000000 means add a transparent background.

    If you will not have a background make it @null it should perform better. To use @null from the code you can try doing:

    widget.setBackgroundDrawable(null);
    

提交回复
热议问题