gpt4 book ai didi

android - 使用 Picasso 加载图像时显示模糊

转载 作者:太空狗 更新时间:2023-10-29 13:05:14 25 4
gpt4 key购买 nike

在我的 Android Activity 中,我在布局中使用 Picasso 将图像加载到 ImageView 中。问题是图像显示为模糊。我已经尝试过另一个像 Glide 这样的图像加载器,但我的图像仍然很模糊。我试过这段代码:

   Picasso.with(this).load(ServiceConstant.BASE_URL_IMAGE + distributor_large_image)
.placeholder(R.mipmap.placeholder_banner)
.into(img_distributor, new com.squareup.picasso.Callback() {
@Override
public void onSuccess() {
img_distributor.startAnimation(scaleUp);
}

@Override
public void onError() {

}
});

图片的url是http://tgpsf.progressivecoders.com/resources/images/distributor/thumb/15205922045aa2654c74bd2.jpg

我的布局 ImageView 是

 <ImageView
android:id="@+id/img_distributor"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="centerCrop"
android:src="@mipmap/placeholder_banner" />

谁能帮我解决我的问题?

最佳答案

我检查了您提供的 URL,可能是您使用的 小图像质量较低 的 ImageView 较大。所以这可能是问题所在。尝试使用其他具有更好分辨率/质量的图片 URL 进行测试。

您还可以使用 Picasso Lib 的 resize 属性(连同您想要的参数)。用于快速加载大图像。

关于android - 使用 Picasso 加载图像时显示模糊,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49230970/

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