gpt4 book ai didi

android - Meta width=device-width 不能按预期在 Galaxy Nexus 上运行

转载 作者:行者123 更新时间:2023-11-29 00:33:46 25 4
gpt4 key购买 nike

我希望窗口的宽度与物理屏幕的宽度相同。

在我的 Galaxy Nexus 上,屏幕宽度为 720 像素,但窗口宽度为 360。

为什么?怎么了?页面完整代码:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>My Page</title>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no" />
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.3.min.js"></script>
<script type="text/javascript">
$(function() {
windowWidth = $(window).width();
windowHeight = $(window).height();

alert("width: " + windowWidth + " height: " + windowHeight);
});

</script>
</head>
<body id="bo">
</body>
</html>

最佳答案

默认情况下,WebView在 Android 中会假定您的网页针对的是中密度设备,因此,它会相应地缩放内容。

来自documentation (请参阅标题为构建网页以支持不同屏幕密度的部分):

By default, WebView scales a web page so that it is drawn at a size that matches the default appearance on a medium density screen. So, it applies 1.5x scaling on a high density screen (because its pixels are smaller) and 0.75x scaling on a low density screen (because its pixels are bigger). Starting with API level ECLAIR, WebView supports DOM, CSS, and meta tag features to help you (as a web developer) target screens with different screen densities.

因此,由于 Galaxy Nexus 是一个 xhdpi设备,WebView将对您的内容应用 2 倍缩放,从而产生 360 度的宽度。

如果你愿意,你可以改变它,它需要添加一个 <meta>在您的 HTML 中标记。例如,将以下内容添加到您的标记中应该会产生准确的宽度:

<meta name="viewport" content="target-densitydpi=device-dpi" />

但是,请注意,在这种情况下您需要考虑密度。

关于android - Meta width=device-width 不能按预期在 Galaxy Nexus 上运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13848846/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com