I've been experimenting with different types of "Lists" and instead of having just one type, I decided to make a ListView that can hold different types of ListView.
On my Custom View for a ListView I have a "Title(TextView)", "Splitter or Border(TextView)" and then the ListView. This way I can create a list with categories and not have them all look the same. In the List there could be another List with just Text, one with Images and Text, one with Images, Text and Buttons.
These two have their very own ListView's on them. I could change it to another ListView type by changing the adapter.
First of all, is this a good idea - performance wise?
Secondly, I've added multiple items to the first and the second list but they're not being shown. Just the first item in each lists are being shown. Why? Only the first item of each ListView inside the ListView is being shown. I guess it's not autoresizing to the items in the list. Is it possible or will it be like this?
This way, at least it'll be flexible to create say a "settings" page that can hold different types of settings and how to update/change/add them.
UPDATED with ExpandeListView:
... does appear to be the same!
In case someone missed it, right now there are 2 ListView's containing 1 ListView each. List #1 should be able to be "different", a list of EditText's for example in that List. So it does not work with a normal solution!