You want to do this

You cannot do this with App Inventor 2. The ListView object does not have this capability. It cannot simultaneously display the list item along a checkbox that is part of the List. A ListView like this can be use if you program with Android Studio ... that does not help you.
The best you can do probably is create either a list of pairs or two separate Lists that have their Indices synchronized.
LIst A ListB
PlayerJohn true
PlayerTom false
PlayerAnna false
PlayerMC true
and use them in conjunction with a screen that displays a column of ListA Players and a column of ListB checkbox state for the Player that are reusible because there are perhaps only five or so items displayed at one time.
Someone else might have other ideas.
Regards,
Steve