How can you manually change the font size of the webview? Like when the page is loaded in WebWebt, the font size is like 24pt and I have seen a huge way for my Android's screen to appear in "websettings" but it seems that the two are not related.
Thanks
I finally found it: -
WebSettings webSettings = webView.getSettings ();
either setTextSize
or
webSettings.setTextSize (WebSettings.TextSize.SMALLEST);
Also works: -
webSettings.setDefaultFontSize (10);
Comments
Post a Comment