2

我是 Android 编程和 Eclipse IDE 的一个小新手。而且我在将这个库/项目(我怎么称呼它?)导入我当前的项目时遇到了一些困难。

GitHub 存储库的链接: https ://github.com/timroes/EnhancedListView/wiki

那里作者写了一个“如何包含”,但我尝试了最后一个(我的),因为我使用的是 Eclipse。

“如何包括

您需要通过以下方式之一将库包含到您的项目中:

Include it from Maven Central (recommended)

Just enter the following line to your build.gradle file in the dependencies section:

compile 'de.timroes.android:EnhancedListView:X.Z.Y@aar'

Where X.Y.Z is a valid release. You can find all releases on the release page or directly in Maven Central.

If you use Maven to build, just use the above coordinates in your pom.xml.

Download the aar file from the release page and reference it in the dependencies section of your build.gradle:

compile files('libs/EnhancedListView-X.Y.Z.aar')

If you are using Eclipse or Ant, you are on your own. You most likely want to download the sources and import them in your build system."

我试图将它包含在构建路径中,但没有奏效。在互联网上没有找到任何东西。除了将项目添加到构建路径中之外,我是否还必须包含一些内容?我是否像 lib 或项目一样导入它?

包括的任何其他选项对我有用吗?我该怎么做?

非常感谢!

4

1 回答 1

2

Eclipse 用户没有一键式方法。您必须将 EnhancedListView.java 复制到您的 src 包之一中,将资源目录的内容复制到项目的资源目录中,并将 annotations.jar 从 libs 目录复制到您的 libs 目录。

于 2013-10-24T22:09:52.880 回答