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

This class is used to custom conf activity. Note: The custom conf activity do not automatically inherit the attributes declared in the Manifest for ZmConfActivity, so you need to manually declare the same configuration for your custom conf activity in the Manifest. More...

Inherits ZmConfActivity.

Protected Member Functions

int getLayout ()
 Get the layout ID of meeting activities. The zm_sdk_new_meeting_layout should be contained as a subview. Note: zm_sdk_new_meeting_layout can not be used for tablet. You can check whether your device is tablet from ZoomUIService#isTabletDevice().
 
int getLayoutForTablet ()
 Get the layout ID of meeting activities for tablet. The zm_sdk_new_meeting_tablet_layout should be contained as a subview. Note: zm_sdk_new_meeting_tablet_layout can only be used for tablet. You can check whether your device is tablet from ZoomUIService#isTabletDevice().
 
int getLayoutForMutiltask ()
 
boolean isSensorOrientationEnabled ()
 Query if the sensor orientation of the phone is enabled.
 

Detailed Description

This class is used to custom conf activity. Note: The custom conf activity do not automatically inherit the attributes declared in the Manifest for ZmConfActivity, so you need to manually declare the same configuration for your custom conf activity in the Manifest.

Definition at line 11 of file NewMeetingActivity.java.

Member Function Documentation

◆ getLayout()

int us.zoom.sdk.NewMeetingActivity.getLayout ( )
inlineprotected

Get the layout ID of meeting activities. The zm_sdk_new_meeting_layout should be contained as a subview. Note: zm_sdk_new_meeting_layout can not be used for tablet. You can check whether your device is tablet from ZoomUIService#isTabletDevice().

Definition at line 19 of file NewMeetingActivity.java.

19 {
20 return R.layout.zm_sdk_new_meeting_layout;
21 }

◆ getLayoutForMutiltask()

int us.zoom.sdk.NewMeetingActivity.getLayoutForMutiltask ( )
inlineprotected

Definition at line 34 of file NewMeetingActivity.java.

34 {
35 return R.layout.zm_sdk_new_meeting_layout_multitasking;
36 }

◆ getLayoutForTablet()

int us.zoom.sdk.NewMeetingActivity.getLayoutForTablet ( )
inlineprotected

Get the layout ID of meeting activities for tablet. The zm_sdk_new_meeting_tablet_layout should be contained as a subview. Note: zm_sdk_new_meeting_tablet_layout can only be used for tablet. You can check whether your device is tablet from ZoomUIService#isTabletDevice().

Definition at line 29 of file NewMeetingActivity.java.

29 {
30 return R.layout.zm_sdk_new_meeting_tablet_layout;
31 }

◆ isSensorOrientationEnabled()

boolean us.zoom.sdk.NewMeetingActivity.isSensorOrientationEnabled ( )
inlineprotected

Query if the sensor orientation of the phone is enabled.

Returns
TRUE means that the programmer does not specify orientation in the code. FALSE not.

Definition at line 43 of file NewMeetingActivity.java.

43 {
44 return super.isSensorOrientationEnabled();
45 }