Adjust text size of WebView?
I would like to proportionally decrease the size of all text in a WebView as easily as possible. I've tried android:textSize="..."
without succe开发者_Python百科ss. Api Level 7.
Try getSettings().setDefaultFontSize()
, or perhaps getSettings().setDefaultZoom()
, on your WebView
.
精彩评论