Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
ICustomShareOptionItem.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3import android.content.Context;
4
5import com.zipow.videobox.sdk.ICustomShareOptionItemInternal;
6
7public interface ICustomShareOptionItem extends ICustomShareOptionItemInternal {
11 String getTitle();
12
17
22
26 interface IShareOptionAction extends IShareOptionActionInternal<ICustomShareOptionItem> {
32 @Override
33 void onClick(Context context, ICustomShareOptionItem optionItem);
34 }
35}
Interface definition for a callback to be invoked when a share option item is clicked.
void onClick(Context context, ICustomShareOptionItem optionItem)
Called when a share option item has been clicked.
String getTitle()
Return share option title.
int getIconResId()
Return share option icon resource id.
IShareOptionAction getAction()
Return callback when share option item is clicked.