Android:如何获取设备的所有显示屏
是否可以枚举 Android 设备支持的所有显示器? API 目前支持获取默认显示,但似乎不支持获取任何其他显示。
Is it possible to enumerate all the displays supported by an Android device? The APIs currently support getting the default display, but don't appear to support getting any other displays.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我没有找到任何用于多设备显示的官方 API,即使看起来将来会支持它。
I did not find any official API for multiple device displays, even if it looks like it will support it in the future.
不,不是,我想你对
getDefaultDisplay
的作用感到困惑,它获取当前设备的显示,而不是全局 Android 默认值,后者不存在!有关屏幕尺寸/密度的信息,请参阅文档。No, it is not, I think you're confused about what
getDefaultDisplay
does, it gets the display of the current device, not the global Android default, which does not exist! For information about screen sizes/densities look at the documentation.