Create a library project based on the support library code:You now have a library project for your selected Support Library that you can use with one or more application projects. Add the library to your application project:
- Make sure you have downloaded the Android Support Library using the SDK Manager.
- Create a library project and ensure the required JAR files are included in the project's build path:
- Select File > Import.
- Select Existing Android Code Into Workspace and click Next.
- Browse to the SDK installation directory and then to the Support Library folder. For example, if you are adding the
appcompat
project, browse to<sdk>/extras/android/support/v7/appcompat/
.- Click Finish to import the project. For the v7 appcompat project, you should now see a new project titled android-support-v7-appcompat.
- In the new library project, expand the
libs/
folder, right-click each.jar
file and select Build Path > Add to Build Path. For example, when creating the the v7 appcompat project, add both theandroid-support-v4.jar
andandroid-support-v7-appcompat.jar
files to the build path.- Right-click the project and select Build Path > Configure Build Path.
- In the Order and Export tab, check the
.jar
files you just added to the build path, so they are available to projects that depend on this library project. For example, theappcompat
project requires you to export both theandroid-support-v4.jar
andandroid-support-v7-appcompat.jar
files.- Uncheck Android Dependencies.
- Click OK to complete the changes.
- In the Project Explorer, right-click your project and select Properties.
- In the Library pane, click Add.
- Select the library project and click OK. For example, the
appcompat
project should be listed as android-support-v7-appcompat.- In the properties window, click OK.
上个图片吧:
因为我需要使用的是支持库提供的PopupMenu,因为没有改主题结果还遇到一个java.lang.RuntimeException: Binary XML file line #17: You must supply a layout_height attribute.错误,将Actiity的主题改成:android:theme="@style/Theme.AppCompat"就可以正常工作了! 希望能够帮到遇到同样问题的童鞋!