2

私は Android プログラミングと Eclipse IDE の初心者です。そして、この lib/project を現在のプロジェクトにインポートするのに苦労しています (どのように呼び出すのですか?)。

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."

ビルドパスに含めようとしましたが、うまくいきませんでした。インターネット上で何も見つかりませんでした。プロジェクトをビルドパスに追加する以外に何かを含める必要がありますか? ライブラリまたはプロジェクトのようにインポートしますか?

含める他のオプションのいずれかが私のために働くでしょうか? どうすればいいのですか?

どうもありがとうございました!

4

1 に答える 1

2

Eclipse ユーザー向けのワンクリック方式はありません。EnhancedListView.java を src パッケージの 1 つにコピーし、リソース ディレクトリの内容をプロジェクトのリソース ディレクトリにコピーし、annotations.jar を libs ディレクトリから libs ディレクトリにコピーする必要があります。

于 2013-10-24T22:09:52.880 に答える