1

I am trying to implement the actionbarcompat support library project in my android application and I have followed the guidelines here from the android website on how to implement these but the resources of the support library still are not available to my project. Note: I am able to use methods defined from the compiled classes of the library project, I just don't know how to reference from the styles. I am using eclipse IDE. Anybody with an idea how or what I am doing wrong please assist me.

4

2 回答 2

5

我碰巧发现了自己的错误!我当然知道其他一些人可能会走同样的路。

这些是添加资源支持库的步骤。

  1. 选择文件 > 导入。
  2. 选择 Existing Android Code Into Workspace 并单击 Next。
  3. 浏览至 SDK 安装目录,然后浏览至支持库文件夹 /extras/android/support/v7/appcompat/。
  4. 单击完成以导入项目。您现在应该会看到一个名为 android-support-v7-appcompat 的新项目。
  5. 在新的库项目中,展开 libs/ 文件夹,右键单击每个 .jar 文件并选择构建路径 > 将 android-support-v4.jar 和 android-support-v7-appcompat.jar 文件添加到构建路径。6.右键单击项目并选择构建路径>配置构建路径。7.在 Order and Export 选项卡中,检查您刚刚添加到构建路径的 .jar 文件,以便它们可用于依赖此库项目的项目。appcompat 项目要求您同时导出 android-support-v4.jar 和 android-support-v7-appcompat.jar 文件。取消选中 Android 依赖项。8.单击确定完成更改。

现在您将库项目添加到您的应用程序:

  1. 在 Project Explorer 中,右键单击您的项目并选择 Properties。

  2. 在库窗格中,单击添加。

    • 这是我出错的地方。检查您是否也以正确的方式完成了它(如图所示)

库窗格

  1. 选择库项目并单击确定。appcompat 项目应列为 android-support-v7-appcompat。
  2. 在属性窗口中,单击确定。
于 2013-07-29T18:34:06.650 回答
0

查看本文档的“使用资源添加库”部分

http://developer.android.com/tools/support-library/setup.html

基本上,您将资源导入您在应用项目中引用的名为“android-support-v7-appcompat”的库项目中。

于 2013-07-29T17:47:34.027 回答