Android WindowManager为不同设备显示相同的屏幕尺寸

发布于 2024-12-20 09:35:39 字数 317 浏览 2 评论 0原文

我正在 2 个不同的 Droid 设备上调试我的应用程序:Bionic 和 Droid3。当我使用 WindowManager 显示设备宽度时高度,这两种设备都显示 540x960(纵向)和 960x540(横向)!这怎么可能?这两个设备的尺寸显然不同。这是代码:

Display display = getWindowManager().getDefaultDisplay();
final int width = display.getWidth();
final int height = display.getHeight();

谢谢, 伊戈尔

I am debugging my application on 2 different Droid devices: Bionic and Droid3. When I use WindowManager to display device width & height, it shows 540x960 (portrait) and 960x540 (landscape) for both devices! How is that possible? The 2 devices are clearly of a different size. Here is the code:

Display display = getWindowManager().getDefaultDisplay();
final int width = display.getWidth();
final int height = display.getHeight();

Thanks,
Igor

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

揽月 2024-12-27 09:35:39

我读到 getWidth()/getHeight() 已被弃用。
尝试使用这个:

Display display = getWindowManager().getDefaultDisplay();
Point displayDimensionInPixel = new Point();
display.getSize(displayDimensionInPixel);

我现在不太确定,因为文档不是 那里了,但我想我记得 Display 的 getWidth()/getHeight() 不返回像素尺寸。

I read that getWidth()/getHeight() is deprecated.
Try to use this:

Display display = getWindowManager().getDefaultDisplay();
Point displayDimensionInPixel = new Point();
display.getSize(displayDimensionInPixel);

I'm not shure right now because the Documentation isn't there anymore, but I think I can remember that getWidth()/getHeight() of Display dont return pixel dimensions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文