How to set the background of the android application?

后端 未结 4 1060
遥遥无期
遥遥无期 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:08

    Add a android:theme="@style/Theme.AppTheme attribute to your application tag in the manifest file with the theme you want to use. This will prevent the default "black" background to be drawn if you only set a background in your Activity/Fragment layout file.

    You declared it in a style.xml file.

    
        
    
    
    
        
        
    
    
    

    AndroidManifest.xml file

    ...
    
    ...
    

提交回复
热议问题