所以我已经在我的Android项目中添加了此依赖项:
implementation ('com.squareup.picasso:picasso:2.71828') {
exclude group: 'com.android.support'
exclude module: ['exifinterface', 'support-annotations']
}
我无法在毕加索中调用任何方法。在代码中将.
放在Picasso
之后的build.gradle
(点),我所能看到的就是这些
但是,我然后创建了一个新的Android项目,然后尝试使用Picasso,它成功了。我不知道当前的问题是什么。另外,如果需要提供有关项目的更多信息(例如我的lines = float(lines)
文件),请在评论中提及。
谢谢!
答案 0 :(得分:0)
如果清理,重建或使现金无效并重新启动对您没有帮助,则可以使用Glide库。在附件链接中找到有关Glide的信息: https://github.com/bumptech/glide
答案 1 :(得分:0)
我在犯一个愚蠢的错误。我试图在我的Activity类中调用Picasso方法,但在类的所有方法之外调用。然后,我在onCreate()
方法中调用了这些方法。我希望这个答案可以帮助犯同样错误的人。