我一直在使用Picasso很长一段时间,但是我必须将OkHttp库升级到2.0.0,因此我必须将Picasso升级到版本2.3.2.
但是,现在Picasso根本不加载任何图像,图像视图留空.任何时候都没有出现任何错误,但是当我改变Picasso登录时,“Hunter”似乎已经被派遣并开始执行,但从未完成.
所有图像都可访问且相当小(约200px×100px).
我正在通过毕加索的“典型”方法加载图像:
Picasso.with(context).load(url).error(R.drawable.errorimg).into(imageView);
但是,从未显示errorimg.
我能做错什么?
编辑:
这是Picasso不工作的地方之一的代码(PlaceListAdapter.java – getView函数)
public View getView(int position,View convertView,ViewGroup parent)
{
final PBNPlace ev = values.get(position);
LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rowView = inflater.inflate(R.layout.places_list_item,parent,false);
TextView titleView = (TextView)rowView.findViewById(R.id.place_title);
ImageView placeImage = (ImageView)rowView.findViewById(R.id.place_image);
Picasso picasso = Picasso.with(context);
picasso.load(ev.imageURL).error(R.drawable.chat).into(placeImage);
titleView.setText(ev.name);
return rowView;
}
最佳答案
原文链接:/android/431102.html