3

Is it possible and how to change the fontsize of a HTML page displayed in a WebView? Similiar as in a desktop browser?

mrd
  • 4,561
  • 10
  • 54
  • 92

2 Answers2

5

Try this

WebSettings webSettings = webView.getSettings();

webSettings.setTextSize(WebSettings.TextSize.SMALLEST);

This one also works:-

webSettings.setDefaultFontSize(15);

This may help you .

For more information take a look

How to change the FontSize in an Android WebView?

OR WebView text size

Community
  • 1
  • 1
bashu
  • 1,710
  • 12
  • 16
1

Yes you can try any of these.

WebSettings webSettings = webView.getSettings();
webSettings.setTextSize(WebSettings.TextSize.SMALLEST);

OR

webSettings.setDefaultFontSize(10);
Amit Hooda
  • 2,133
  • 3
  • 23
  • 37