3

当我开始寻找适用于 android 的图像加载库时,我发现 Picasso 和 Glide 比其他库要好得多。我可以将 Picasso 与 eclipse 集成,但没有关于如何在 eclipse 中为 android 项目使用 Glide 库的文档。

参考:https ://github.com/bumptech/glide

仅供参考:有关于使用 Intellij IDEA 构建 Glide 的注释。

4

1 回答 1

4

如果你在你的项目中使用 Maven,你可以试试这个(但你可能已经看到了):

<dependency>
  <groupId>com.github.bumptech.glide</groupId>
  <artifactId>glide</artifactId>
  <version>3.4.0</version>
  <type>aar</type>
</dependency>

或者您可以直接从maven(页面底部)下载 jar 并将其包含在您的项目中。

于 2014-12-17T13:42:20.033 回答