当我尝试使用Picasso库时,出现错误消息,“无法解析方法get()”。这可能是什么原因。
我已经基于在堆栈溢出上针对此类问题给出的答案尝试了一些解决方案,但并不能解决我的问题。
这是我的依赖
dependencies {
implementation 'com.squareup.picasso:picasso:2.5.2'
}
这是我在Java中显示错误“无法解析方法get()”的行
Picasso.get().load ( retrieveProfileImage ).into ( targetImage );
答案 0 :(得分:0)
我设法通过更改Picasso库版本来解决该错误,它对我有用。我从
更改了版本`implementation 'com.squareup.picasso:picasso:2.5.2'
到
implementation 'com.squareup.picasso:picasso:2.71828'
答案 1 :(得分:0)
我知道这很古老,但是这个答案可能对某人有所帮助, 我有相同的问题来解决它,而不是使用.get()
Picasso.get().load(imageURL).into(imageView);
我使用.with()
Picasso.with(context).load(imageURL).into(imageView);