tags:

views:

48

answers:

1

I would like to proportionally decrease the size of all text in a WebView as easily as possible. I've tried android:textSize="..." without success. Api Level 7.

+1  A: 

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

CommonsWare