Android: ClassCastException ao adicionar uma exibição de cabeçalho ao ExpandableListView

Estou tentando adicionar um cabeçalho a um ExpandableListView da seguinte maneira:

headerView = View.inflate(this, R.layout.header, null);
expandableListView.addHeaderView(headerView);
expandableListView.setAdapter(new SectionedAdapter(this));

O que me dá o seguinte erro:

 12-08 16:23:42.354:
 ERROR/AndroidRuntime(421): Caused by:java.lang.ClassCastException: android.widget.LinearLayout$LayoutParams
 12-08 16:23:42.354:   ERROR/AndroidRuntime(421): at android.widget.ListView.clearRecycledState(ListView.java:504)
 12-08 16:23:42.354: ERROR/AndroidRuntime(421): at android.widget.ListView.resetList(ListView.java:490)
 12-08 16:23:42.354:ERROR/AndroidRuntime(421):at android.widget.ListView.setAdapter(ListView.java:422)
 12-08 16:23:42.354:ERROR/AndroidRuntime(421): at android.widget.ExpandableListView.setAdapter(ExpandableListView.java:475)

Isso está acontecendo na chamada paraexpandableListView.setAdapter(new SectionedAdapter(this)), mas não consigo descobrir o porquê. Alguma ideia?

questionAnswers(4)

yourAnswerToTheQuestion