制作自定义适配器会在listview中显示分类的项目

时间:2013-09-02 19:57:04

标签: android android-listview listviewitem

我想完成以下内容:

我想对listview中的项目进行分类,但是,我的listviews往往只显示一行,因为我只给它一个(自定义xml,扩展自定义baseadapter)

我检查了this链接,但它似乎没有做我想要完成的任何提示?

1 个答案:

答案 0 :(得分:0)

您可以在行的XML中添加最初隐藏的(View.GONE)标头,并在检测到类别更改时将其填充并显示。 另一个更有效的选择是在检测到类别更改时以编程方式膨胀/创建和添加此标头(可以是任何类型的ViewViewGroup)。
例如(第一个选项):

row.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rowContainer"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <TextView
        android:id="@+id/txtGroupHeader"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:padding="4dp"
        android:background="@drawable/group_header_gradient"
        android:gravity="center"
        android:textColor="@android:color/white" />

    <ImageView
        android:id="@+id/imgLogo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="1dp"
        android:layout_marginLeft="3dp"
        android:layout_marginRight="5dp"
        android:layout_alignParentLeft="true"
        android:layout_below="@id/txtGroupHeader" />

</RelativeLayout>

适配器代码

@Override
public View getView(int position, View convertView, ViewGroup parent){
    View res = null;
    Pojo ev = (Pojo)this.getItem(position);
    Integer prevItemType = null;
    //Get the type of the previous pojo in the list
    if(position > 0){
        Pojo prevEv = (Pojo)this.getItem(position - 1);
        if(prevEv != null){
            prevItemType = prevEv.getType();
        }
    }
    //Determine if this view should have a header
    boolean addHeaderView = !(prevItemType != null && prevItemType.equals(ev.getType()));

    if(convertView != null){
        res = convertView;
    }else{
        res = mInflater.inflate(R.layout.row, null);
    }
    TextView txtHeader = (TextView)res.findViewById(R.id.txtGroupHeader);
    if(addHeaderView){
        String typeName = Database.getTypeDescription(ev.getType());
        if(typeName != null){
            txtHeader.setText(typeName.toUpperCase(Locale.US));
        }
        txtHeader.setVisibility(View.VISIBLE);
    }else{
        txtHeader.setVisibility(View.GONE);
    }

    //Regular row
    ImageView imgLogo = (ImageView)res.findViewById(R.id.imgLogo);
    // ... imgLogo.setImageBitmap ...
    // ... etc ...

    return res;
}

希望它有所帮助。