I want develop an app showing the scores of participants in a challenge. Challenge can have n number of rounds. I want to show the scores in a list where each row represents the score for a particular round. The first row would be: score of player 1, score of player 2, score of player 3
The number of players is not fixed. This is the challenge I am facing. I cannot implement using the standard recycler view and adapter with view holder pattern as I cannot statically define the layout for each row. Please suggest how can I implement this list.