我有一个自定义列表视图,它在列表行布局中有一个SmartImageView(http://loopj.com/android-smart-image-view/)
我正在尝试将每行上的每个SmartImageView设置为图片,下面是我的列表适配器。
private class MyListAdapter extends ArrayAdapter<ListItem> {
private ArrayList<ListItem> items;
public MyListAdapter(Context context, int textViewResourceId, ArrayList<ListItem> items) {
super(context, textViewResourceId, items);
this.items = items;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
if (v == null) {
LayoutInflater vi = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = vi.inflate(R.layout.item_row_layout, null);
}
ListItem o = items.get(position);
if (o != null) {
TextView title = (TextView) v.findViewById(R.id.ptitle);
TextView site = (TextView) v.findViewById(R.id.site);
TextView price = (TextView) v.findViewById(R.id.price);
SmartImageView img = (SmartImageView) findViewById(R.id.smallimage);
Typeface font = Typeface.createFromAsset(getAssets(), "Asap-Regular.ttf");
site.setTypeface(font);
title.setTypeface(font);
price.setTypeface(font);
if (title != null) {
title.setText(o.getTitle());
}
if (site != null) {
site.setText("Supplier Name");
}
if (price != null) {
price.setText("£"+ String.valueOf(o.getPrice()));
}
if (img != null){
String url = o.getImage();
img.setImageUrl(url);
}
}
return v;
}
}
所有其他的东西都设置得很好,即标题,价格等但是图像没有正确设置。
如果有多个列表项目,则顶部项目将获得最后一个项目图像,其余项目没有设置图像。 如果列表中有一个项目,则根本无法获得图像集。
如果您需要更多代码或信息,请告诉我们!
答案 0 :(得分:0)
您应该尝试通过调用
为您的SmartImageView尝试findViewById SmartImageView img = (SmartImageView) v.findViewById(R.id.smallimage);
这样,您将获得列表的每个视图中的SmartImageView,否则,它不会获取列表视图中该行特定的那个。