Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
us.zoom.sdk.MinMeetingView Class Reference

Minimized meeting view class. More...

Inherits us.zoom.sdk.MobileRTCVideoView.

Public Member Functions

 MinMeetingView (Context context)
 MinMeetingView (Context context, AttributeSet attrs)
 MinMeetingView (Context context, AttributeSet attrs, int defStyle)
final synchronized MobileRTCVideoViewManager getVideoViewMgr ()
Public Member Functions inherited from us.zoom.sdk.MobileRTCVideoView
 MobileRTCVideoView (Context context)
 MobileRTCVideoView (Context context, AttributeSet attrs)
 MobileRTCVideoView (Context context, AttributeSet attrs, int defStyle)
void setGestureDetectorEnabled (boolean isEnabled)
 Sets whether to enable gesture detector of shared unit. Default value: disabled.
void setZOrderMediaOverlay (boolean isMediaOverlay)
 Sets whether the surface view is placed at the top of another regular surface view in the window. This is typically used to place overlays on top of an underlying media surface view.
void setZOrderOnTop (boolean onTop)
 Controls whether the surface of the view is in its top window. Usually it is placed behind the window to allow it (in most cases) to synthesize the hierarchy with the view. By setting it up, you can place it above the window. This means that everything in the window where this SurfaceView is located will not appear at the top of its surface.
synchronized MobileRTCVideoViewManager getVideoViewManager ()
 Gets a manager object of the video view.
void onPause ()
 Pauses video view rendering.
void onResume ()
 Resumes video view rendering.
boolean onDown (MotionEvent e)
boolean onFling (MotionEvent e1, MotionEvent e2, float velocityX, float velocityY)
void onLongPress (MotionEvent e)
boolean onScroll (MotionEvent e1, MotionEvent e2, float distanceX, float distanceY)
void onShowPress (MotionEvent e)
boolean onSingleTapUp (MotionEvent e)
boolean onDoubleTap (MotionEvent e)
boolean onDoubleTapEvent (MotionEvent e)
boolean onSingleTapConfirmed (MotionEvent e)
void beforeGLContextDestroyed ()
void surfaceCreated ()
void surfaceDestroyed ()
MobileRTCSDKError addWhiteBoardFragment ()
MobileRTCSDKError removeWhiteboardFragment ()
MobileRTCSDKError addDocFragment (long shareSourceID)
MobileRTCSDKError removeDocFragment ()

Protected Member Functions

void onConfigurationChanged (Configuration newConfig)
Protected Member Functions inherited from us.zoom.sdk.MobileRTCVideoView
boolean isVisibleToUser ()
void onAttachedToWindow ()
void onDetachedFromWindow ()

Detailed Description

Minimized meeting view class.

Definition at line 14 of file MinMeetingView.java.

Constructor & Destructor Documentation

◆ MinMeetingView() [1/3]

us.zoom.sdk.MinMeetingView.MinMeetingView ( Context context)
inline

Definition at line 15 of file MinMeetingView.java.

15 {
16 super(context);
17 }

◆ MinMeetingView() [2/3]

us.zoom.sdk.MinMeetingView.MinMeetingView ( Context context,
AttributeSet attrs )
inline

Definition at line 19 of file MinMeetingView.java.

19 {
20 super(context, attrs);
21 }

◆ MinMeetingView() [3/3]

us.zoom.sdk.MinMeetingView.MinMeetingView ( Context context,
AttributeSet attrs,
int defStyle )
inline

Definition at line 23 of file MinMeetingView.java.

23 {
24 super(context, attrs, defStyle);
25 }

Member Function Documentation

◆ getVideoViewMgr()

final synchronized MobileRTCVideoViewManager us.zoom.sdk.MinMeetingView.getVideoViewMgr ( )
inline

Reimplemented from us.zoom.sdk.MobileRTCVideoView.

Definition at line 28 of file MinMeetingView.java.

28 {
29 return super.getVideoViewMgr();
30 }

◆ onConfigurationChanged()

void us.zoom.sdk.MinMeetingView.onConfigurationChanged ( Configuration newConfig)
inlineprotected

Definition at line 33 of file MinMeetingView.java.

33 {
34 super.onConfigurationChanged(newConfig);
35 SDKMinMeetingViewComponentMgr.getInstance().onConfigurationChanged(newConfig);
36 }