Skip to content Skip to sidebar Skip to footer

Multiple Android Expandable Lists In A Layout

I want to have more than one expandable list within a layout. It appears that an expandable list in a custom layout must have an id of '@id/android:list'. So, how could I have mo

Solution 1:

They don't have to have the @id/android:list ID - they only have to have that ID if you are using a ListActivity or ExpandableListActivity. Just use a normal Activity and give them unique IDs.


Post a Comment for "Multiple Android Expandable Lists In A Layout"