Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to resolve the error "No resource found that matches the given name" when adding library v7 AppCompat in Eclipse?

I have a project target to API Level 10 and i want to implement the new ActionBar support library. After follow all the instrutions in the Support Library Setup, when adding the library to my project I came across with dozens of error messages like this:

android-support-v7-appcompat\res\values-v14\styles_base.xml:24: error: Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Holo.....

OK, i know that they are many answers to this question, but, after trying all the more obvious, i still could not solve the error.
I kept searching and found the cause, which is not so obvious, at least for newbies like me.
My intent is provide a full answer to help all those who are like me and do not master all the secrets of the Android development.

like image 489
ramaral Avatar asked Aug 25 '13 14:08

ramaral


2 Answers

This is what you have to do for use the ActionBar support library correctly.

Follow the instructions in the Support Library Setup - Adding libraries with resources.
One thing that can bring some doubt is add the library to your aplicattion project:

(1) In the Project Explorer, right-click your project and select Properties.
(2) At the left pane select Android.
(3) At th bottom of the right pane click Add
(4) Select the library project android-support-v7-appcompat and click OK. Click OK to close the properties window.

If you not get any of the errors I mentioned it´s all done.

However if you are like me, you dont´t followed the advice of Android team that suggests you always compile your source using the latest SDK, you get the error.

The error ocurrs because my Project Build Target was Android 2.3.3 and need to be at lest 3.0.
It was not immediately clear to me because of the fact that I'm specifically developing for Android 2.3.3 and I'm using support libraries.

OK, I hope this helps.

like image 65
ramaral Avatar answered Nov 06 '22 13:11

ramaral


You should add that support library to your project. To add:

Right click on project, then go to :

properties > Java Build Path > Libraries

here Add External JARs...

add android-support-v7-appcompat.jar (path/to/sdk/extras\android\support\v7\appcompat\libs)

Additionally you also have to copy that jar to libs folder of your project, if it is not there automatically.

and you should use the @style/Theme.AppCompat theme for your application for support-v7 to be working

like image 27
djhs16 Avatar answered Nov 06 '22 14:11

djhs16