Possible Duplicate:
Adapter class cast exception when removing a Footer view?
Here is the log:
java.lang.ClassCastException: com.test.MyAdapter cannot be caste to android.widget.HeaderViewListAdapter
at android.widget.ListView.removeFooterView(ListView.java:387)
at com.test.MyActivity.removeFooterViews()
MyAdapter is a MultiList Adapter. Don't really see what removing a footer has to do with casting my adapter to android.widget.HeaderViewListAdapter? Where does this come from?
Here is all that happens in MyActivity.removeFooterViews()
if (myFooterView != null)
{
myListView.removeFooterView(myFooterView);
}