我有一个webview,我想设置它的比例
但无论我投入,setinitialscale都会失败 setinitialscale(50)或setinitialscale(300)
如果我加载外部网站,Setinitialscale就可以使用。
但不是用于在资产中加载本地html文件。
这是否与我加载的网页的html有关?有人有这个想法吗?
mWebView = (WebView) view.findViewById(R.id.webview);
websettings = mWebView.getSettings();
websettings.setLoadWithOverviewMode(true);
websettings.setUseWideViewPort(true);
mWebView.setInitialScale(1);
html如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="">
<link rel="stylesheet" type="text/css" href="css/main.css" />
<script src="scripts/jquery-1.8.2.min.js"></script>
<script src="scripts/main.js"></script>
</head>
<body>
<div class="contentContainer">
<div class="titleHeader fontSize"><div class="boxContent">Diabetic Foot Problems
</div>
</div>
<div class="txtContent fontSize marginLR">
<b>Management</b><br/>
<li>Advise on proper footwear</li>
<li>Discuss the need for additional support</li>
<li>Treat all skin infections( frequent wound dressing/ debridement/ administration of broad spectrum antibiotics)</li>
<li>Perform annual assessment</li>
</div>
</div>
</body>
</html>
答案 0 :(得分:0)
此行覆盖了设置初始比例方法。如果你可以删除它,你应该能够设置正确的比例。
websettings.setLoadWithOverviewMode(true);