I have an application whose layout was done in tabs
and in one of them I would like to implement ListView
custom, but I could not because the tab
JAVA class extends the fragment
class % and to make the list I need to extend the class ListActivity
, as in JAVA there is no multiple inheritance, I do not know how to do it.
I would like to know if it is possible to implement a% custom_default in a layout of type ListView
?