在Android webview中,我加载了一个简单的html页面,其div设置为100%宽度和高度。我在浏览器中工作正常但是在Galaxy Nexus 4.4.2上我看不到内容div。 调试div似乎内容没有宽度。
以下是webview设置:
setScrollContainer(false);
setBackgroundColor(Color.RED);
setHorizontalScrollBarEnabled(false);
setHorizontalScrollbarOverlay(false);
setVerticalScrollBarEnabled(false);
setVerticalScrollbarOverlay(false);
this.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
WebSettings ws = getSettings();
ws.setSupportZoom(false);
ws.setJavaScriptEnabled(true);
ws.setUseWideViewPort(true);
ws.setLoadWithOverviewMode(true);
ws.setCacheMode(WebSettings.LOAD_NO_CACHE);
ws.setLayoutAlgorithm(WebSettings.LayoutAlgorithm.NORMAL);
ws.setAllowFileAccess(true);
ws.setAllowFileAccessFromFileURLs(true);
以下是示例html:
<html>
<head>
<title>Title</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="cache-control" content="no-cache" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta id="myvp" name="viewport" content="width=400, height=300, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="./main.css">
</head>
<body>
<div class="component">
<input type="text">
</div>
</body>
</html>
这是css:
body {
background-color: blue;
}
.component {
width: 100%;
height: 100%;
background-color: green;
overflow: hidden;
}
有了这个,我希望看到一个带有文本字段的绿色框。 相反,我只看到身体的蓝色背景。 如果我删除溢出,我可以看到文本字段,但它不可选 如果用固定值替换100%,我将看到一个绿色框,但文本字段再次无法选择。
假设组件div没有显示,因为当使用100%时,其w / h为0。 有人知道为什么吗? 还有为什么我无法输入任何文字。
由于
答案 0 :(得分:0)
所以问题是我们在编写onSizeChanged方法并且没有调用super。 调用Super.onSizeChanged(w,h,oldw,oldh)解决了这个问题。 感谢所有输入