Resize WebView text?

I would like to proportionally reduce the size of all the text in the WebView as simple as possible. I tried android:textSize="..."without success. Api Level 7.

+3
source share
1 answer

Try getSettings().setDefaultFontSize()or perhaps getSettings().setDefaultZoom()on WebView.

+6
source

Source: https://habr.com/ru/post/1745799/


All Articles