I'm trying to convert between ListAdapter
and HeaderViewListAdapter
And when I run my app I get the following error:
Caused by: java.lang.ClassCastException: com.trustme.ui.adapter.BusinessListAdapter cannot be cast to android.widget.HeaderViewListAdapter
this is my code:
HeaderViewListAdapter hlva = ((HeaderViewListAdapter) searchBy.getPtr()
.getAdapter());
You cannot do that. the only thing they got in common is word "Adapter" in name. And that's it. HeaderViewListAdapter does not implement Adapter, not to mention ListAdapter is interface.