Android Support Library V7
I am making an android app that contains action bar and fragment which are not supported for API level 8! So I just tried to import support library V7 to fix this problem! But when
Solution 1:
Download Android Support Library in Your SDK manager under Extras
. Then Import appcompat
from following folder in your sdk.
Android-SDK\extras\android\support\v7\appcompat
Solution 2:
The first step is to download the library through the SDK manager. Support library v7 is a library project, so needs to be added as a new project to your workspace.
Note: You can't just drop the .jar in because it has additional XML resources.
There's some pretty thorough instructions on how to add it located here.
Post a Comment for "Android Support Library V7"