android列表视图图像添加

时间:2011-01-07 01:56:49

标签: android android-layout

holder.text.setText(DATA [位置]);             holder.icon.setImageBitmap((position& 1)== 1?mIcon1:mIcon2);

        return convertView;
    }

如何添加更多图像,因为此列表视图仅显示2张图像。我看到上面的代码只允许按顺序添加2个图像。我想添加更多图片。

请帮助,谢谢。

1 个答案:

答案 0 :(得分:0)

简单......我可以创造   ArrayList images = new ArrayList();

并通过获取drawable将(Drawable img)添加到此arraylist中 Drawable img = getResources()。getDrawabled(R.drawable.icon);

然后设置.. holder.icon.setImageDrawable(images.get(位置));

或者也可以使用Integer数组...并直接从res / drawable添加图像。 数组[位置]。