ViewHolders для ListViews с различными макетами элементов - PullRequest
5 голосов
/ 12 апреля 2011

У меня ListView с 2 различными типами макетов: один с изображением, а другой без изображения Я пытаюсь сделать что-то вроде this . Я перезаписываю getView BaseAdapter:

public View getView(int position, View convertView, ViewGroup parent) {
        Map<String, String> item = mData.get(position);
        if(item.get("image_location").equals("") == true){
            ViewHolderWithoutImage holder = new ViewHolderWithoutImage();
            if(convertView == null){
                convertView = mInflater.inflate(R.layout.row_without_image, null);
                holder.title = (TextView)convertView.findViewById(R.id.title);
                holder.firstParagraph = (TextView)convertView.findViewById(R.id.first_paragraph);
                convertView.setTag(holder);
            }else{
                holder = (ViewHolderWithoutImage)convertView.getTag();
            }
            holder.title.setText(mData.get(position).get("title").toString());
            holder.firstParagraph.setText(item.get("first_paragraph").toString());

        }else{
            ViewHolderWithImage holder = new ViewHolderWithImage();
            Bitmap bm = null;
            if(convertView == null){
                convertView = mInflater.inflate(R.layout.row_with_image, null);
                holder.title = (TextView)convertView.findViewById(R.id.title_image);
                holder.firstParagraph = (TextView)convertView.findViewById(R.id.first_paragraph_image);
                holder.image = (ImageView)convertView.findViewById(R.id.image);
                convertView.setTag(holder);
            }else{
                holder = (ViewHolderWithImage)convertView.getTag();
            }

            holder.title.setText(mData.get(position).get("title").toString());
            holder.firstParagraph.setText(item.get("first_paragraph").toString());
            String location = imageBaseUrl + item.get("image_location");
            bm = downloadImage(location);
            holder.image.setImageBitmap(bm);
        }
        return convertView;
    }

Мои классы ViewHolders:

static class ViewHolderWithImage {
        TextView title;
        TextView firstParagraph;
        ImageView image;
    }

    static class ViewHolderWithoutImage {
        TextView title;
        TextView firstParagraph;
    }

Работает без второй части, но вылетает при

holder = (ViewHolderWithImage)convertView.getTag();

частично, когда item.get("image_location").equals("") != true с java.lang.reflect.InvocationTargetException. Любые идеи, как я могу это исправить?

Ответы [ 2 ]

19 голосов
/ 12 апреля 2011

Я думаю, что это происходит потому, что тег convertView содержит ViewHolder другого типа. Попробуйте проверить convertView тип:

if(item.get("image_location").equals("") == true){
    ...
    if(convertView == null || !(convertView.getTag() instanceof ViewHolderWithoutImage)){
    ...
}else{
    ...
    if(convertView == null || !(convertView.getTag() instanceof ViewHolderWithImage)){
        convertView = mInflater.inflate(R.layout.row_with_image, null);
        ...

P.S. Лучше использовать системные методы для обработки разных макетов (переопределить getItemViewType()). На эту тему есть хорошая статья .

1 голос
/ 18 июля 2014

Вы должны переопределить getItemViewType() и getViewTypeCount() на своем адаптере, возвращая различное число для каждого типа строки, например 0 для ViewHolderWithoutImage и 1 для ViewHolderWithImage.Таким образом, getView() может правильно определить, какое представление создавать.

...