ECLIPSE
If your problem is not resolved or for future readers, here is the answer: from android sdk manager, first download the Android Support Library.
Go to this place and copy the .aar file from here
X: \ Android-SDK \ Extras \ Android \ m2repository \ com \ Android \ support \ recyclerview-v7 \ 21.0.0
Then rename it as a .zip file, then unzip it, then find the classes.jar file, rename it with some kind of proper name, for example, "RecyclerView_v7.jar". Then copy this .jar file to your project library. Add it to build the path, then restart eclipse so that it can be created (not necessary, but I had to do this).
**
After new library updates; RecyclerView, CardView, etc. Available as simple library projects.! :)
File ~> Import ~> Existing Android code ~> SDKpath ~> additional ~> Android ~> support ~> v7 ~> recyclerView .
Then right-click on this project, go to properties in Android to check if there is a library . It's done..!
Now open the application in which you want to use recyclerView. goto the properties of your Project application for Android add a library here, you will see that the library project adds that (remember, do not make your application a library project by checking "Is Library"), now go to your project application
Properties ~> Java Build Path ~> Libraries ~> Add Banks ~> RecyclerView LibraryProject ~> libs
Then add this jar to your project and build path.! Pheeew .. :)
Muhammad Faisal Hyder
source share