Android WindowManager为不同设备显示相同的屏幕尺寸
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我读到 getWidth()/getHeight() 已被弃用。
尝试使用这个:
我现在不太确定,因为文档不是 那里了,但我想我记得 Display 的 getWidth()/getHeight() 不返回像素尺寸。
I read that getWidth()/getHeight() is deprecated.
Try to use this:
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.