Reputation: 1981
I have used Appcompat for Actionbar to get actionbar in Android 2.1 devices. I included appcompat library. but it shows Theme.AppCompat.Light not found. please provide suggestions.!
Upvotes: 0
Views: 301
Reputation: 25830
Try using below Step:
1) File->Import (android-sdk-xxx\extras\android\support\v7
). Choose appcompat
2) Project-> properties->Android
. In the section library Add
and choose appCompat
Upvotes: 1
Reputation: 8911
As explained in this thread, you can't just add the jar
files, you need to add the full project as a Library dependency. You can find the instructions here.
Upvotes: 2