Flex 4.5 - 如何检测屏幕尺寸以使图像在移动设备上居中?

发布于 2024-12-17 11:11:01 字数 199 浏览 0 评论 0原文

applicationComplete 上尝试了 stage.stageWidthstageHeight,但由于某种原因,返回的实际数字似乎不准确 - 图像总是显示关闭-居中(stageWidth/2 - imageWidth/2)。

如何确定移动设备的实际屏幕尺寸以使对象居中?

Tried stage.stageWidth and stageHeight on applicationComplete, but for some reason the actual numbers returned do not seem to be accurate - the image always appears off-centered (stageWidth/2 - imageWidth/2).

How do you determine the mobile device's actual screen size, to center an object?

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

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

发布评论

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

评论(1

优雅的叶子 2024-12-24 11:11:01

你有没有尝试过:

    popUp.width = FlexGlobals.topLevelApplication.width - 40; //popup - leave side edges
    popUp.height = FlexGlobals.topLevelApplication.height - 40; //popup - leave top + bottom edges

    popUp.x = FlexGlobals.topLevelApplication.width/2 - popUp.width/2; //popup x coord
    popUp.y = FlexGlobals.topLevelApplication.height/2 - popUp.height/2; //popup y coord

Have you tried:

    popUp.width = FlexGlobals.topLevelApplication.width - 40; //popup - leave side edges
    popUp.height = FlexGlobals.topLevelApplication.height - 40; //popup - leave top + bottom edges

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