Video SDK Participant Class - Android
Participant class includes all the properties, methods and events related to all the participants joined in a particular meeting.
Get local and remote participants
You can get the local streams and participant meta from meeting.getLocalParticipant()
. And a Map of joined participants is always available via meeting.getParticipants()
- Kotlin
- Java
Javascript
val localParticipant = meeting!!.getLocalParticipant()
val participants = meeting!!.getParticipants()
Javascript
Participant localParticipant = meeting.getLocalParticipant();
Map<String, Participant> participants = meeting.getParticipants();
Participant Properties
Participant Methods
Participant Events
Got a Question? Ask us on discord