Setting background colour of Android layout element

后端 未结 9 1921
北海茫月
北海茫月 2020-12-02 03:42

I am trying to, somewhat clone the design of an activity from a set of slides on Android UI design. However I am having a problem with a very simple task.

I have cre

9条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-02 04:38

    The

    res/values/colors.xml.
    
    #ffff0000
    android:background="@color/red"
    

    example didn't work for me, but the

    android:background="#(hexidecimal here without these parenthesis)"
    

    worked for me in the relative layout element as an attribute.

提交回复
热议问题