安卓缩放布局,其中包含2个Web视图

时间:2018-10-04 09:31:08

标签: android webview scale

我需要在缩放时添加2个Web视图来缩放布局。 img

我尝试设置scaleX和scaleY以进行手势布局。它可以工作,但是Webview中的内容以旧分辨率显示,因此在大缩放时看起来很糟糕。 有人可以告诉我该如何实施吗?

1 个答案:

答案 0 :(得分:0)

我不太确定要实现什么目标,但是我想您想同时启用两个webView进行缩放?

对于每个Webview实例,在ZoomControls内启用onCreate功能

// Allow Pinch to Zoom
webView.getSettings().setBuiltInZoomControls(true);
// Disable the zoom overlay control
webView.getSettings().setDisplayZoomControls(false);