Reputation: 637
I'm using the AppCompat Support Library, but I can't use some of the themes and attributes.
For example, when I try to use Theme.AppCompat.Light.NoActionBar
I get this error:
Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light.NoActionBar'.
and when I try to use colorPrimary
and colorPrimaryDark
:
Error: No resource found that matches the given name: attr 'colorPrimary'.
Error: No resource found that matches the given name: attr 'colorPrimaryDark'.
What could it be?
my themes.xml
<?xml version="1.0" encoding="utf-8"?>
<!-- the theme applied to the application or activity -->
<style name="CustomActionBarTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">#FF0000</item>
</style>
Upvotes: 0
Views: 185
Reputation: 637
The problem seems to be in eclipse, i just migrated my project to Android Studio and this solved the problem.
Upvotes: 0