Okay so following Googles Developers guide I've tried (and failed) to change the color of the implemented actionbar. I'm currently using Android Studio instead of eclipse and have just updated everything to the recent release.
I'm essentially trying to change the color of the actionbar to anything but the default "light" color.
Here's some lovely code.
values/styles.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light">
</style>
</resources>
values-v21/styles.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme" parent="Theme.AppCompat.Light">
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
<style name="MyActionBar" parent="Widget.AppCompat.Light.ActionBar">
<item name="android:background">#ff0000</item>
</style>
</resources>
Any help appreciated thanks.