android – Picasso和PhotoView Library将图像加载到ImageView中很奇怪

前端之家收集整理的这篇文章主要介绍了android – Picasso和PhotoView Library将图像加载到ImageView中很奇怪前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Picasso库将图像加载到 ImageView中,然后使用PhotoView库向ImageView添加缩放和平移等.

但是当毕加索第一次加载图像时,它会显示如下图像:

但是,一旦我触摸图像,它就会正确放置

但是,如果我关闭我的应用程序,它突然不再显示图像,不会.

我的主要活动:
http://pastebin.com/5H4zAgH

我正在使用的库:

> http://square.github.io/picasso/
> https://github.com/chrisbanes/PhotoView

解决方法

当我一起使用Picasso和Photoview时,我的错误图像存在同样的问题.

为了解决这个问题,我所做的是在使用Picasso加载图像时使用回调(使用in(view,callback)而不仅仅是into(view).成功加载图像后,我实例化PhotoViewAttacher对象或调用方法update().

这里有一个代码示例:

Callback imageLoadedCallback = new Callback() {

    @Override
    public void onSuccess() {
        if(mAttacher!=null){
            mAttacher.update();
        }else{
            mAttacher = new PhotoViewAttacher(mImageView);
        }
    }

    @Override
    public void onError() {
        // TODO Auto-generated method stub

    }
};

Picasso.with(mContext)
.load(mImageUrl)
.into(mImageView,imageLoadedCallback);

我希望这有帮助.问候.

原文链接:https://www.f2er.com/android/318500.html

猜你在找的Android相关文章