CWAC の Endlessadapter を使用しています。デフォルトでは、TextView が 1 つだけあるデフォルトの ListView を使用します。アダプターで getView メソッドを使用して、次のようにアイテムを好きなように設定したいと思います。
 @Override
    public View getView(final int position, View convertView, final ViewGroup parent) {
      viewHolder cell = null;
//      ImageLoader imageLoader = ImageLoader.getInstance();
        if (convertView == null) {
            cell = new viewHolder();
            convertView = inflater.inflate(R.layout.row,
                    parent, false);
            cell.image = (ImageView) convertView
                    .findViewById(R.id.image_video);
            cell.title = (TextView) convertView
                    .findViewById(R.id.title_video);
            cell.user = (TextView) convertView
                    .findViewById(R.id.user_video);
            convertView.setTag(cell);
        } else {
            cell = (viewHolder) convertView.getTag();
        }
        imageLoader.displayImage(video.mostviewedvideos.get(position).small_poster, cell.image);
        cell.title.setText(video.categoryvideos.get(position).title); 
        cell.user.setText(video.categoryvideos.get(position).username); 
        return convertView;
    }
    static class viewHolder {
        TextView title;
        TextView user;
        ImageView image;
    }
に追加するとgetView()、もう機能しません。どうすればこれを機能させることができるのだろうか。EndlessAdaptergetPendingView()