如何使用Windows Phone 8.1停止webview中内容的缩放级别

时间:2014-12-26 06:41:14

标签: windows-phone-8.1

如何使用Windows Phone 8.1停止缩放webview中的内容

webFreeFlow.getSettings().setSupportZoom(false);

我正在使用这种方法,但这不起作用,请给我任何建议

1 个答案:

答案 0 :(得分:2)

您必须通过WebView.InvokeScriptAsync method并在JavaScript中将user-scalable设置为no,以便生成以下内容:

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">

一些额外资源here