使用自定义适配器回收ListView视图

时间:2013-10-14 18:36:34

标签: android listview

我正在为ListView充气两种不同的布局。一切正常,直到我开始向下滚动,开始随机应用2种不同的布局。我在这里跟着其他的例子,但我无法让它发挥作用。有什么建议吗?

public class CustomAdapter extends BaseAdapter {

    Date date = new Date();
    private OfferList[] offers;
    private String nameCompare = "";

    CustomAdapter (OfferList[] offers, FetchItemsTask fetchItemsTask) { 
         this.offers = offers;
     }

    @Override
    public View getView(int position, View convertView, ViewGroup parent){
        ViewHolder holder = null;
        LayoutInflater inflater = getLayoutInflater();          
        if (convertView == null) {
            holder = new ViewHolder();
            if (nameCompare.equalsIgnoreCase(offers[position].getCustomerName())) {
                convertView = inflater.inflate(R.layout.list_offer_group, null);
            }
            else {
                nameCompare = offers[position].getCustomerName();
                convertView = inflater.inflate(R.layout.list_offer, null);
            }
            holder.name = (TextView) convertView.findViewById(R.id.name);
            holder.color = (TextView) convertView.findViewById(R.id.color_stock);
            holder.time = (TextView) convertView.findViewById(R.id.time);
            holder.offerStatus = (TextView) convertView.findViewById(R.id.offer_status);

            convertView.setTag(holder);

        } 
        else {
            holder = (ViewHolder) convertView.getTag();
        }

        holder.name.setText(offers[position].getName());
        holder.carStockColor.setText(offers[position].getYear() + " " + offers[position].getVehicleMake());
        java.util.Date time1 = new java.util.Date(Long.parseLong(offers[position].getModified()));
        holder.time.setText(time1.toString().substring(0, 11) + " | ");
        holder.offerStatus.setText(offers[position].getStatus());
        return convertView;

    }

public class ViewHolder {
        TextView name;
        TextView color;
        TextView time;
        TextView offerStatus;
    }
 }

1 个答案:

答案 0 :(得分:4)

您需要覆盖以下方法:

https://developer.android.com/reference/android/widget/Adapter.html#getViewTypeCount() https://developer.android.com/reference/android/widget/Adapter.html#getItemViewType(int)

这些将让列表视图知道您拥有多少种类型的视图以及哪种类型的位置。这将阻止listview将不正确的convertview类型传递给getView方法。

编辑:

让我们退后一步。你看到这个问题的原因是ListView将不正确的convertView传递给你的getView()方法。默认的getViewTypeCount()返回1,因此listView假定您只有一种视图类型。您正在为行使用两种类型的视图:R.layout.list_offer_group和R.layout.list_offer。当convertView不为null时,您不会检查convertView是哪个布局 - 在某些情况下,它将是不正确的布局。

解决这个问题:

覆盖getViewTypeCount以返回2,因为您有两种不同的类型。覆盖getItemViewType以使用您的组/非组逻辑

public int getItemViewType(int position) {
  if (nameCompare.equalsIgnoreCase(offers[position].getCustomerName())) {
    return 0;
  } else {
    return 1;
  }
}

现在,对于组返回0,对于非组返回1。然后我们可以在getView中使用getItemViewType()来确定我们正在使用哪个视图,所以:

        if (nameCompare.equalsIgnoreCase(offers[position].getCustomerName())) {
            convertView = inflater.inflate(R.layout.list_offer_group, null);
        }
        else {
            nameCompare = offers[position].getCustomerName();
            convertView = inflater.inflate(R.layout.list_offer, null);
        }

变为:

        if (getItemViewType(position) == 0) {
            convertView = inflater.inflate(R.layout.list_offer_group, null);
        }
        else {
            nameCompare = offers[position].getCustomerName();
            convertView = inflater.inflate(R.layout.list_offer, null);
        }

这应该可以解决您的行为,因为现在ListView知道您有2种视图类型(getViewTypeCount)以及列表中的哪些行属于哪种类型(getItemViewType)。它将不再将类型为group的convertView传递给非类型行的getView调用,反之亦然。