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。如果设备在内容下旋转到水平位置,由于内容调整大小而出现空闲空间,但 webview 占据屏幕的一半以上,并且不会与文本一起调整大小。如何调整 webview 的大小?
UPD。感谢你所做的一切!问题是因为我在清单文件中使用了偏好:android:configChanges="orientation"。如果关闭此选项,webview 会自动调整大小。
将此代码用于webview以适合您的布局位置。
ourBrow.getSettings().setBuiltInZoomControls(true); this.ourBrow.getSettings().setLoadWithOverviewMode(false); this.ourBrow.getSettings().setUseWideViewPort(false);