public View getView(int position, View convertView, ViewGroup parent) { PhotoComment photoComment = (PhotoComment) data.get(position); InfoRowView view = new InfoRowView( this.context, photoComment.getMemberName(), photoComment.getComment(), Integer.valueOf(photoComment.getPhotoCommentId())); return view; }
public long getItemId(int position) { PhotoComment photoComment = (PhotoComment) data.get(position); return Long.parseLong(photoComment.getPhotoCommentId()); }