Android活动/阵列适配器

时间:2012-07-26 18:23:15

标签: android android-arrayadapter

我无法在适配器中检索数组中的项目,希望有人能告诉我这个问题......

在我的应用程序中,我使用了很多listView并使用数组适配器来显示行中的数据,我很好。

我的活动

protected void onPostExecute(CarDetail list) {
   List<CarPhotos> photos = list.getPhotos();
         System.out.println("retrieving Photos");
         for (CarPhotos photo : photos) {
            PhotoArray.add(photo);
            System.out.println(photo);
        }
}
System.out.println(PhotoArray.size());
photoAdapter.notifyDataSetChanged();

我的适配器(通常用它来显示列表中的一行数据)

public View getView(int position, View convertView, ViewGroup parent)
{
ViewHolder holder;
    //Get the current location object
    CarPhotos lm = (CarPhotos) getItem(position);


    ......etc
    holder.thumbnailname.setText(lm.getThumbnailName());
return convertView;
}

但是,如果我想得到计数和该数组中的所有项目而不是特定的行位置,我怎么能这样做? (即:列出所有缩略图名称并计入1个单元格/行)

提前致谢=)

0 个答案:

没有答案