How to access the ConfChatFragment on v5.2.41727.0928?

Description
On previous versions, I was able to present ConfChatFragment directly, here’s the line of code

ConfChatFragment.showAsActivity( ctx, 0, 0L );

How can I achieve the same behaviour on the version v5.2.41727.0928? We need to show the chat directly from call, on a button click, not via participants list. Thanks

Which version?
v5.2.41727.0928

Hi @daniel3, thanks for the post.

I’m not sure where the ConfChatFragment is coming from, as it is not present in our SDK reference. Can you please show me the import statement for this so that I may better assist?

Thanks!

import com.zipow.videobox.fragment.ConfChatFragment;
this is the import I use :smiley:

Hi @daniel3, thanks for clarifying.

This is actually not intended to be accessible outside of the SDK. To implement the behavior you are describing, you would need to implement your own custom UI. Documentation on how to do this can be found here.

Thanks!