gpt4 book ai didi

使用Picasso时出现java.lang.NoSuchMethodError

转载 作者:太空宇宙 更新时间:2023-11-04 12:47:44 25 4
gpt4 key购买 nike

我正在使用 Picasso 开发带有多个图像的 ViewPager。但它给了我这个错误

java.lang.NoSuchMethodError: No virtual method load(Ljava/lang/String;)Lcom/squareup/picasso/RequestBuilder; in class Lcom/squareup/picasso/Picasso; or its super classes (declaration of 'com.squareup.picasso.Picasso' appears in /data/app/com.example.myapp-1/base.apk)

使用时如

Picasso.with(mContext)
.load(url)
.centerCrop()
.resize(imageView.getMeasuredWidth(),imageView.getMeasuredHeight())
.error(R.drawable.detail_placeholder)
.placeholder(R.drawable.detail_placeholder)
.into(imageView);

任何帮助将不胜感激。

最佳答案

尝试使用此代码,我现在正在我的应用程序中使用它

// "this" is the context here
Picasso.with(this)
.load(personPhotoUrl)
.placeholder(R.drawable.avatar)
.error(R.drawable.avatar)
.into(mImageViewProfilePic);

我的 Picasso jar 文件版本 2.4.0

如果不行,您可以尝试使用图像加载器库或 Gilde 加载图像。

关于使用Picasso时出现java.lang.NoSuchMethodError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36146827/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com