From android sdk, how to get access to the username and his profile pic
Hi @jomy.paul2,
You can access information about a specific user by accessing the InMeetingUserInfo
object associated with that user. To get a user’s info, you can pass their userId into getUserInfoById
. A username is returned by the getUserName
method, and getAvatarPath
will get you the path for their picture.
Thanks!