您不能将毕加索“传递”给适配器。您必须创建自己的自定义适配器,这并不像听起来那么令人生畏。它甚至可能基于 SimpleAdapter。像这样:
public class MyAdapter extends SimpleAdapter{
public MyAdapter(Context context, List<? extends Map<String, ?>> data, int resource, String[] from, int[] to){
super(context, data, resource, from, to);
}
public View getView(int position, View convertView, ViewGroup parent){
// here you let SimpleAdapter built the view normally.
View v = super.getView(position, convertView, parent);
// Then we get reference for Picasso
ImageView img = (ImageView) v.getTag();
if(img == null){
img = (ImageView) v.findViewById(R.id.imageOrders);
v.setTag(img); // <<< THIS LINE !!!!
}
// get the url from the data you passed to the `Map`
String url = ((Map)getItem(position)).get(TAG_IMAGE);
// do Picasso
Picasso.with(v.getContext()).load(url).into(img);
// return the view
return v;
}
}
那么你可以只使用这个类而不带参数上的图像(但它必须仍然存在于orderList中)。
ListView list= (ListView) getActivity().findViewById(R.id.list);
ListAdapter adapter =
new MyAdapter(
getActivity(),
orderList,
R.layout.order_usa_row,
new String[]{TAG_PRICE,TAG_TITLE,TAG_PSTATUS,TAG_PRICESYMBOL},
new int[]{R.id.price,R.id.title,R.id.pstatus,R.id.symbol});
list.setAdapter(adapter);