Is it possible to switch from a TableLayout to an ExpandableListView? How? I tried using ViewFlipper but the fact that ExpandableListView doesn't use XML threw a wrench in it.
Please help!
Is it possible to switch from a TableLayout to an ExpandableListView? How? I tried using ViewFlipper but the fact that ExpandableListView doesn't use XML threw a wrench in it.
Please help!
I'm not really understand the question in a sense of what do you mean by
switch from a TableLayout to an ExpandableListView
But ExpandableListView can be defined in xml just fine
<ExpandableListView
android:id="@+id/myList"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>