-
public final class CallCompositeParticipantViewDataCallCompositeParticipantViewData for participant.
// Initialize the call composite builder final CallCompositeBuilder builder = new CallCompositeBuilder(); // Build the call composite CallComposite callComposite = builder.build(); // Build the CallCompositeLocalOptions with CallCompositeParticipantViewData CallCompositeLocalOptions localOptions = new CallCompositeLocalOptions( new CallCompositeParticipantViewData(...)); callComposite.launch(..., ..., localOptions);
-
-
Field Summary
Fields Modifier and Type Field Description private BitmapavatarBitmapprivate StringdisplayNameprivate ImageView.ScaleTypescaleType
-
Method Summary
Modifier and Type Method Description BitmapgetAvatarBitmap()Get avatar Bitmap. CallCompositeParticipantViewDatasetAvatarBitmap(Bitmap avatarBitmap)Set avatar Bitmap. StringgetDisplayName()Get display name. CallCompositeParticipantViewDatasetDisplayName(String displayName)Set display name. ImageView.ScaleTypegetScaleType()Get scaleType. CallCompositeParticipantViewDatasetScaleType(ImageView.ScaleType scaleType)Set scaleType. -
-
Method Detail
-
getAvatarBitmap
Bitmap getAvatarBitmap()
Get avatar Bitmap.
-
setAvatarBitmap
CallCompositeParticipantViewData setAvatarBitmap(Bitmap avatarBitmap)
Set avatar Bitmap.Will not take affect if called after CallCompositeParticipantViewData passed to CallComposite.
-
getDisplayName
String getDisplayName()
Get display name.
-
setDisplayName
CallCompositeParticipantViewData setDisplayName(String displayName)
Set display name.
-
getScaleType
ImageView.ScaleType getScaleType()
Get scaleType.Will not take affect if called after CallCompositeParticipantViewData passed to CallComposite.
-
setScaleType
CallCompositeParticipantViewData setScaleType(ImageView.ScaleType scaleType)
Set scaleType.Will not take affect if called after CallCompositeParticipantViewData passed to CallComposite.
-
-
-
-