@aigens/aigens-sdk-core 0.0.33 → 0.0.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -253,6 +253,10 @@ public class WebContainerActivity extends BridgeActivity {
|
|
253
253
|
this.bridge.getWebView().getSettings().setUseWideViewPort(true);
|
254
254
|
this.bridge.getWebView().getSettings().setLoadWithOverviewMode(true);
|
255
255
|
|
256
|
+
// fixed font size
|
257
|
+
int rounded = (int) Math.round(1 * 100);
|
258
|
+
this.bridge.getWebView().getSettings().setTextZoom(rounded);
|
259
|
+
|
256
260
|
// set http & https mixed
|
257
261
|
this.bridge.getWebView().getSettings().setMixedContentMode(WebSettings.MIXED_CONTENT_ALWAYS_ALLOW);
|
258
262
|
|