How to make custom windowBackground theme style work on all Android devices?

后端 未结 2 1191
刺人心
刺人心 2021-01-12 03:34

I am trying to get all of my activities to have a custom theme style that should look like this:

\"good\"

2条回答
  •  伪装坚强ぢ
    2021-01-12 04:00

    The key to solving the problem was changing android:windowBackground in the theme to the following:

    @drawable/default_background
    

    Notice that I am no longer using @color, but simply a @drawable, the xml for which is below:

    
    
    
        
    
    

    It seems that some devices do not support accepting a color for this element.

提交回复
热议问题