其他分享
首页 > 其他分享> > android-如何包含/构建Glide库以用于Eclipse?

android-如何包含/构建Glide库以用于Eclipse?

作者:互联网

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

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

仅供参考:有关使用Intellij IDEA构建Glide的说明.

解决方法:

如果您在项目中使用Maven,则可以尝试以下操作(但是您可能已经看到了):

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

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

标签:image-loading,android-glide,android
来源: https://codeday.me/bug/20191028/1955558.html