Separating Lists with Headers in Android 0.9
Monday August 18, 2008 at 4:42 PM
Earlier today thelatest Android 0.9 SDK was released, and it’s packed full of wonderful changes. As you play around, you might see ListViews split into sections using separating headers. (Example shown on the right is the browser settings list.)
There isn’t an easy way of creating these separated lists, so I’ve put together SeparatedListAdapter which does it quickly. To summarize, we’re creating a new BaseAdapter that can contain several other Adapters, each with their own section headers.
First let’s create some simple XML layouts to be used for our lists: first the header view, then two item views that we’ll use later for the individual lists. (Thanks to Romain Guy for helping me find existing styles to keep these XML layouts nice and tidy.)
- <TextView
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/list_header_title"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:paddingTop="2dip"
- android:paddingBottom="2dip"
- android:paddingLeft="5dip"
- style="?android:attr/listSeparatorTextViewStyle"/>
- <TextView
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/list_item_title"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:paddingTop="10dip"
- android:paddingBottom="10dip"
- android:paddingLeft="15dip"
- android:textAppearance="?android:attr/textAppearanceLarge"
- />
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:paddingTop="10dip"
- android:paddingBottom="10dip"
- android:paddingLeft="15dip"
- >
- <TextView
- android:id="@+id/list_complex_title"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceLarge"
- />
- <TextView
- android:id="@+id/list_complex_caption"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceSmall"
- />
- LinearLayout>
Now let’s create the actual SeparatedListAdapter class which provides a single interface to multiple sections of other Adapters. After using addSection() to construct the child sections, you can easily use ListView.setAdapter() to present the now-separated list to users.
As for the Adapter internals, to correctly find the selected item among the child Adapters, we walk through subtracting from the original position until we find either a header (position = 0) or item in the current child Adapter (position <>
Here’s the source for SeparatedListAdapter:
- publicclassSeparatedListAdapterextendsBaseAdapter {
- publicfinalMapsections =newLinkedHashMap();
- publicfinalArrayAdapterheaders;
- publicfinalstaticintTYPE_SECTION_HEADER =0;
- publicSeparatedListAdapter(Context context) {
- headers =newArrayAdapter(context, R.layout.list_header);
- }
- publicvoidaddSection(String section, Adapter adapter) {
- this.headers.add(section);
- this.sections.put(section, adapter);
- }
- publicObject getItem(intposition) {
- for(Object section :this.sections.keySet()) {
- Adapter adapter = sections.get(section);
- intsize = adapter.getCount() +1;
- // check if position inside this section
- if(position ==0)returnsection;
- if(position <>returnadapter.getItem(position -1);
- // otherwise jump into next section
- position -= size;
- }
- returnnull;
- }
- publicintgetCount() {
- // total together all sections, plus one for each section header
- inttotal =0;
- for(Adapter adapter :this.sections.values())
- total += adapter.getCount() +1;
- returntotal;
- }
- publicintgetViewTypeCount() {
- // assume that headers count as one, then total all sections
- inttotal =1;
- for(Adapter adapter :this.sections.values())
- total += adapter.getViewTypeCount();
- returntotal;
- }
- publicintgetItemViewType(intposition) {
- inttype =1;
- for(Object section :this.sections.keySet()) {
- Adapter adapter = sections.get(section);
- intsize = adapter.getCount() +1;
- // check if position inside this section
- if(position ==0)returnTYPE_SECTION_HEADER;
- if(position <>returntype + adapter.getItemViewType(position -1);
- // otherwise jump into next section
- position -= size;
- type += adapter.getViewTypeCount();
- }
- return-1;
- }
- publicbooleanareAllItemsSelectable() {
- returnfalse;
- }
- publicbooleanisEnabled(intposition) {
- return(getItemViewType(position) != TYPE_SECTION_HEADER);
- }
- @Override
- publicView getView(intposition, View convertView, ViewGroup parent) {
- intsectionnum =0;
- for(Object section :this.sections.keySet()) {
- Adapter adapter = sections.get(section);
- intsize = adapter.getCount() +1;
- // check if position inside this section
- if(position ==0)returnheaders.getView(sectionnum, convertView, parent);
- if(position <>returnadapter.getView(position -1, convertView, parent);
- // otherwise jump into next section
- position -= size;
- sectionnum++;
- }
- returnnull;
- }
- @Override
- publiclonggetItemId(intposition) {
- returnposition;
- }
- }