重启应用程序时图像质量不佳

时间:2016-05-12 20:39:41

标签: android image picasso image-quality

在应用程序中,有一个项目在您的帐户中添加头像,当您添加它时 - 图片将填充到服务器并按预期显示:

enter image description here

但如果我重新启动应用程序,则图像质量会丢失:

enter image description here

当比较原始服务器上覆盖的图像的重量和大小时,一切都很好,重量和大小相同。显示头像直接来自服务器。可能是什么问题?

缺少缓存,请使用Picasso。用于显示头像的代码:

Picasso.with(context).load(link).into(imageview);

1 个答案:

答案 0 :(得分:0)

也许你打电话

Picasso.with (context) 
    .load (link) 
    .fit()
    .into(imageView);

它有效