Difference between android:windowBackground and android:colorBackground?

Solution 1:

windowBackground only affects the main window's background.

colorBackground affects not only the background of the main window but also of all components e.g. dialogs unless you override it in the component layout.

So both of them change the activity's background, but the colorBackground changes many more things as well.

Solution 2:

windowBackground are style properties that are effective only when the style is applied as a theme to an Activity or application and android:windowBackground attribute only supports a reference to another resource; unlike android:colorBackground, it can not be given a color literal

http://developer.android.com/guide/topics/ui/themes.html

EDITED: i.e. the value of windowBackground must be a referenced color:

<item name="android:windowBackground">@color/red</item>

but for backgroundColor you can use literals:

<item name="android:colorBackground">#ff0000</item>