Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
MinMeetingView.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3import android.content.Context;
4import android.content.res.Configuration;
5import android.util.AttributeSet;
6
7import us.zoom.internal.SDKMinMeetingViewComponentMgr;
8import us.zoom.sdk.MobileRTCVideoView;
9import us.zoom.sdk.MobileRTCVideoViewManager;
10
11final public class MinMeetingView extends MobileRTCVideoView {
12 public MinMeetingView(Context context) {
13 super(context);
14 }
15
16 public MinMeetingView(Context context, AttributeSet attrs) {
17 super(context, attrs);
18 }
19
20 public MinMeetingView(Context context, AttributeSet attrs, int defStyle) {
21 super(context, attrs, defStyle);
22 }
23
24 @Override
25 final public synchronized MobileRTCVideoViewManager getVideoViewMgr() {
26 return super.getVideoViewMgr();
27 }
28
29 @Override
30 protected void onConfigurationChanged(Configuration newConfig) {
31 super.onConfigurationChanged(newConfig);
32 SDKMinMeetingViewComponentMgr.getInstance().onConfigurationChanged(newConfig);
33 }
34}
MinMeetingView(Context context)
MinMeetingView(Context context, AttributeSet attrs)
final synchronized MobileRTCVideoViewManager getVideoViewMgr()
void onConfigurationChanged(Configuration newConfig)
MinMeetingView(Context context, AttributeSet attrs, int defStyle)
Meeting MobileRTCVideoView manager class. Get the manager object by the interface in MobileRTCVideoVi...