I am trying to change the background of the top bar which is created by eclipse automatically. I have read some tutorials and they suggested me to change "styles.xml" file. here is what I have done so far...
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:textColor">#008</item>
<item name="android:windowTitleBackgroundStyle">@style/WindowTitleBackground</item>
</style>
<style name="WindowTitleBackground">
<item name="android:background">#0000FF</item>
</style>
but this doesnt work. would you please take a look at it and tell me what is wrong with this code? because it doesnt do any effects.