Skip to content Skip to sidebar Skip to footer

Android:style Reference After Sdk And Adt Plugin Update In Mid 2011

I see a lot a similar questions R.java can't compile , No resource found that matches @android:style/ 'just after SDK & ADT update' leading to existing projects can't compile

Solution 1:

<!-- Default theme for windows that want to have the user's selected
     wallpaper appear behind them.  -->
<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>

Looks like you want to use the above code from the Android source and create your own theme based it.


Post a Comment for "Android:style Reference After Sdk And Adt Plugin Update In Mid 2011"