How to explain raychenon well.
<style name="Theme.Wallpaper" parent="android:style/Theme.Wallpaper" > <item name="android:colorForeground">#fff</item> </style>
What happens is that some styles, such as Theme.Wallpaper, are not publicly available. You should no longer expand them.
Some suggest returning to platform_tools_r05 HERE
If you want to make the right path, read the Xavier July 28 HERE
If you want to reuse a style that is private, you must copy the contents of that style into your own, not an extension.
ANSWER
The default theme for windows that want to select a user is a wallpaper.
<style name="Theme.Wallpaper"> <item name="android:windowBackground">@android:color/transparent</item> <item name="android:colorBackgroundCacheHint">@null</item> <item name="android:windowShowWallpaper">true</item> </style>
It looks like you want to use the above code from an Android source and create your own theme based on.
Hope this helps you.
source share