如何在 Android 快速入门应用程序的主视图中显示主讲人。
https://github.com/twilio/video-quickstart-android/tree/master/quickstart
感谢和问候西伦德拉
编辑
添加代码:
public void OnDominantSpeakerChanged(Room room, RemoteParticipant remoteParticipant) {
if (remoteParticipant!=null) {
if (remoteParticipant.RemoteVideoTracks.Count > 0) {
RemoteVideoTrackPublication remoteVideoTrackPublication = remoteParticipant.RemoteVideoTracks[0];
remoteParticipantIdentity = remoteParticipant.Identity;
AddRemoteParticipantVideo(remoteVideoTrackPublication.RemoteVideoTrack);
}
}
}