我在我的项目中同时使用Picasso和GestureImageView。但是,当我从URL获取图像并尝试将其放入GestureImageView时,图像在开始时变为低alpha。当我点击图像时,它是正常的。我无法找到这场冲突的原因。有解决方案或替代方案吗?
我的代码如下:
view = (GestureImageView) rootView.findViewById(R.id.downstairs_image);
Picasso
.with(rootView.getContext())
.load("http://dev.arkenus.com/ikz2014/img/blueprint/" + blueprints.getBlueprint())
.into(view);
答案 0 :(得分:1)
在毕加索电话会议中加入.noFade()
。
淡入淡出动画可能与GestureImageView所做的某些自定义动画绘制相冲突