How do I set the remote view of sinch to full screen in Android.
I have try VideoController.setResizeBehaviour,but it doesn't work.
How do I set the remote view of sinch to full screen in Android.
I have try VideoController.setResizeBehaviour,but it doesn't work.
You need to use Sinch serverice class. Sinch documentation not properly written.
Put this in public class SinchService extends Service.
mSinchClient.addSinchClientListener(new MySinchClientListener());
mSinchClient.getCallClient().addCallClientListener(new SinchCallClientListener());
mSinchClient.getVideoController().setResizeBehaviour(VideoScalingType.ASPECT_FILL);
mSinchClient.start();