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.
我几乎完成了我的第一个应用程序,但我仍在处理一些小问题。
我的主要问题是我正在加载一个普通的 html 页面,但我无法访问 html 代码。
现在我想在 webview 模块中将页面居中,因为页面也是居中的,所以当我加载页面时,我必须一直滚动到右侧,这真的很烦人。
那么我该如何做到这一点,webview 模块会自动加载已经居中的页面,并且应用程序的用户会看到页面的中间?
你的意思是,你不想要水平滚动,试试这个:
mwebView.getSettings().setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN);