Android:如何在Gridview中为图像设置标签?

时间:2012-12-19 12:04:47

标签: android

大家可以告诉我如何设置并获取GridView中图像的标签。 提前谢谢你。 我写了下面的代码,但它不起作用?这是对的吗?

int jj=100;
    for(int j=0;j<ia.imageid.length;i++)
        {

        g.getChildAt(j).setTag(jj);
        jj++;
        }

1 个答案:

答案 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();
}