Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
说,我的代码中有以下指令:
webView.setInitialScale(160);
在加载本地 HTML 文件之前。页面加载后,我看到文本比预期的要大,但是有溢出并且启用了水平滚动。如果我在文本上点击两次,它会被重排并保持在屏幕宽度内;现在不需要滚动。我需要文本在加载时正确流动而不会溢出,无需点击。
将此添加到您的代码中
webView.getSettings().setLayoutAlgorithm(WebSettings.LayoutAlgorithm.NORMAL);