I have an android game which loads a list of ‘games’ the user has against his friends. Similar to the “game words with friends”

To recreate this type of view, I originally used a listview, but because there different elements, ie, games, sections (their move – your move) etc, I don’t think I can do this kind of layout with purely a listview?
Has anyone done something similar? I might just use a scroll view and build up the layout dynamically, but my worry is that if a user has many games, performance will suffer.
Can anyone advise?
You should override the
getView()method in your listview adapter.It’s responsible for displaying each item’s layout. You will be able to do there something like:
Look here for detailed info: link
Example: (how I see the solution)
This method is in your adapter class (which you use to populate the
ListView, so you need to Override it with the code like below: