Android meeting sdk, cancel button text is not showing in light mode

Description
Cancel button text on dialog which will display when tap on Participant or More button from bottom toolbar is not showing when device is in light mode

Zoom SDK version - 5.17.10

Attached screens for reference

More Settings Dialog:

Participants Dialog
Tap Participants and then tap on either participant

Is there any ways or API to handle this or will fix in next Zoom SDK version, could you please take a look.
Thanks.

Please provide the update on this.

Thanks.

It looks like all activities in the SDK are declared without a theme:

<activity
    android:name="us.zoom.internal.helper.PrivacyDisclaimerActivity"
    android:exported="false"
    android:launchMode="singleTop"
    android:screenOrientation="portrait" />
<activity
    android:name="com.zipow.videobox.JoinByURLActivity"
    android:configChanges="orientation|screenSize|smallestScreenSize|layoutDirection|screenLayout|keyboardHidden|uiMode|colorMode"
    android:exported="false"
    android:launchMode="singleTask" />
<activity
    android:name="com.zipow.videobox.IntegrationActivity"
    android:configChanges="orientation|screenSize|smallestScreenSize|layoutDirection|screenLayout|keyboardHidden|uiMode"
    android:excludeFromRecents="true"
    android:launchMode="singleTask" />
...

As a temporary workaround we can duplicate all these declarations in our app’s manifest and add theme a theme like this:

<activity
  android:name="us.zoom.internal.helper.PrivacyDisclaimerActivity"
  android:exported="false"
  android:launchMode="singleTop"
  android:screenOrientation="portrait"
  android:theme="@style/ZMTheme.SubWindow" />
<activity
  android:name="com.zipow.videobox.JoinByURLActivity"
  android:configChanges="orientation|screenSize|smallestScreenSize|layoutDirection|screenLayout|keyboardHidden|uiMode|colorMode"
  android:exported="false"
  android:launchMode="singleTask"
  android:theme="@style/ZMTheme.SubWindow" />
<activity
  android:name="com.zipow.videobox.IntegrationActivity"
  android:configChanges="orientation|screenSize|smallestScreenSize|layoutDirection|screenLayout|keyboardHidden|uiMode"
  android:excludeFromRecents="true"
  android:launchMode="singleTask"
  android:theme="@style/ZMTheme.SubWindow" />

I’m not sure that using ZMTheme.SubWindow for each activity is correct but at least it fixes most major UI issues I’ve seen.

Thanks for update, so the work around will be part of next release right?

You can try it with the current version of the SDK.
I don’t know whether it will be a part of the next release or not, since I don’t work at Zoom =)

Sure, will check.
Thanks

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.