Android WebView Word Wrapping Pinch Zoom for Text Content

时间:2016-03-05 19:37:21

标签: java android webview

我使用WebView工具开发电子书阅读器android projecd。我正在缩放屏幕像捏,屏幕文字大小正在增长但文本溢出的屏幕,没有包装。如何文字包装缩放缩放屏幕,有没有任何重载方法来解决问题?屏幕只有文字内容。例如:

enter image description here

1 个答案:

答案 0 :(得分:-1)

public void increaseFont(Webview webview) {
    int font = wv.getSettings().getTextZoom();
    int newFont = font + 15;
    wwbview.getSettings().setTextZoom(newFont);
}