大家可以告诉我如何设置并获取GridView中图像的标签。 提前谢谢你。 我写了下面的代码,但它不起作用?这是对的吗?
int jj=100;
for(int j=0;j<ia.imageid.length;i++)
{
g.getChildAt(j).setTag(jj);
jj++;
}
答案 0 :(得分:0)
在适配器的getView
..
public View getView(int position, View convertView, ViewGroup parent) {
View view;
if(convertView == null) {
view = inflater.inflate(R.layout.image, null);
}
else
view = convertView;
ImageView image = (ImageView)view.findViewById(R.id.image);
image.setTag();
}