I am creating a chat app. Messages can be video, photo, text or file + text both for incoming and outgoing. Totally 8 kinds of layout. All messages are in one ListView
.
I read this topic: Here , and it's very easy to organize small number of layouts (2..3), but with large number of layouts (8, 10 or more) I get large ugly switch statements. How can I organize layouts switching in my adapter's getview()
?