使用自定义适配器在一个列表视图中膨胀两个布局的问题

时间:2011-08-11 16:00:32

标签: java android android-listview adapter

我在一个列表视图中膨胀两个布局。数据采用json格式。我所做的是将json连接起来,并检查每个布局的适当位置(第一个布局只显示从位置0到第一个json的长度 - 1)。

当列表视图变长时会出现问题,我可以向下滚动它。它出现了Null指针异常。所以我评论了一些代码,错误就消失了。但我得到的并不是我所期待的: 它随机地交换格式。 (假设第一个json的长度是x,所以0到x-1应该是第一个布局。但是当我向上和向下滚动时,有时在0和x之间的某个地方改变为第二个布局。以及其他行> x,有时改为第一个布局)

这是适配器的代码

public class CustomAdapter extends BaseAdapter {

private Activity activity;
private JSONArray data;
private static LayoutInflater inflater=null;
private SecondItem second_item;
private FirstItem first_item;
private int firstLength;
private boolean hasFirst = false;

public CustomAdapter(Activity a, JSONArray firstArray, JSONArray secondArray) {
    activity = a;
    first_item = new FirstItem (firstArray);
    second_item = new SecondItem (secondArray);
    firstLength = first_item.getLength();
    if (!firstArray.isNull(0)) {
        data=CustomUtils.concatJsonArray(firstArray, secondArray);
        hasFirst = true;
    }
    else
        data = secondArray;
    inflater = (LayoutInflater)activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

}

public int getCount() {
    // TODO Auto-generated method stub
    return data.length();
}

public Object getItem(int position) {
    // TODO Auto-generated method stub
    return position;
}

public long getItemId(int position) {
    // TODO Auto-generated method stub
    return position;
}

public static class ViewHolder{
    public TextView txt_both;
    public TextView txt_first_only;
    ...
}

public View getView(final int position, View convertView, ViewGroup parent) {
    // TODO Auto-generated method stub
    View vi=convertView;
    ViewHolder holder;
    if(convertView==null){
        if (position < firstLength && hasFirst) {
            vi = inflater.inflate(R.layout.first_item, null);
        }
        else {
            vi = inflater.inflate(R.layout.second_item, null);
        }


        holder=new ViewHolder();
        holder.txt_both=(TextView)vi.findViewById(R.id.txt_both);
        ...

        if (position < firstLength && hasFirst) {
            holder.txt_firstOnly=(TextView)vi.findViewById(R.id.txt_firstOnly);
            ...

        }
        vi.setTag(holder);
    }
    else
        holder=(ViewHolder)vi.getTag();

    if (position < firstLength && hasFirst) {
            holder.txt_both.setText(first_item.getContent(position));
            ...

这里是注释块,它导致空指针异常(错误点为行holder.txt_firstOnly.setText):

        /*if (first_item.getStatus(position)==0) {
            holder.txt_firstOnly.setText(...);              

        }
        else if (first_item.getStatus(position)==1) {
            holder.txt_firstOnly.setText(...);
        }
        else if (first_item.getStatus(position)==2) {
            holder.txt_firstOnly.setText(...);

        } */

这是代码的其余部分:

        }
    else {
        holder.txt_both.setText(second_item.getContent(position - firstLength));
        ...

    }

    return vi;
}


}

1 个答案:

答案 0 :(得分:2)

您的自定义适配器应覆盖方法getViewTypeCount()getItemViewType (int position)。现在,操作系统认为所有视图都具有相同的视图类型,因此它会随意传递先前创建的视图。正如您所见,有时这不是该职位的正确观点。