How to set the background of the android application?

后端 未结 4 999
遥遥无期
遥遥无期 2021-02-05 11:31

I want to change the background of my App\'s Activity.

Now that is available in black I want to change that with some images or themes.

4条回答
  •  清酒与你
    2021-02-05 12:04

    Further to @Ryan:

    In the layout for your activities, you can also add the attribute

    android:background="@android:color/white"
    

    to set a background color. You can also introduce a custom resource /res/values/colors.xml in which you can declare custom colors. One such file might look like:

    
    #B0171F
    
    

    You then introduce these in XML as follows:

    android:background="@color/fire_brick_red"
    

提交回复
热议问题