0

我在适配器中检索数组中的项目时遇到问题,希望有人能告诉我灯...

在我的应用程序中,我使用了很多 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 个单元格/行)

提前感谢=)

4

0 回答 0