I need to make a custom ListView
with multiple view types. I found this link: http://umakantpatil.com/posts/android-listview-with-separate-headers-and-images-loading-from-remote-server
But the problem is: It divides the list into sections and creates a single view type. My first question is: How can I modify this code so that I could retrieve my each row with a different type? I mean I want to have a section but I want the items come in a different manner.
My second question is: How can I do that? I thought of two adapters: one to hold a raw view type and one to hold another to set for my listview. How can I that?
Thanks