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,374
  • 10
  • 51
  • 89

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,702
  • 12
  • 15
1

Yes you can try any of these.

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

OR

webSettings.setDefaultFontSize(10);
Amit Hooda
  • 2,113
  • 2
  • 23
  • 36