-
public final class CallCompositeParticipantViewData
CallCompositeParticipantViewData 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 Bitmap
avatarBitmap
private String
displayName
private ImageView.ScaleType
scaleType
-
Method Summary
Modifier and Type Method Description Bitmap
getAvatarBitmap()
Get avatar Bitmap. CallCompositeParticipantViewData
setAvatarBitmap(Bitmap avatarBitmap)
Set avatar Bitmap. String
getDisplayName()
Get display name. CallCompositeParticipantViewData
setDisplayName(String displayName)
Set display name. ImageView.ScaleType
getScaleType()
Get scaleType. CallCompositeParticipantViewData
setScaleType(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.
-
-
-
-