根据分辨率自动调整大小(FLEX)
我正在 Flex builder 3 中使用 Adobe Flex 开发一个应用程序。我的应用程序在 1024 x 768 分辨率下工作正常,但它不适合我的笔记本电脑屏幕,它恰好有 1366 x 768。我的问题是如何使我的应用程序自动调整大小根据决议?
谢谢 !
i am developing an application with Adobe Flex in Flex builder 3. my application works fine in 1024 x 768 resolution but it doesn't fit in my laptop's screen which happen to have 1366 x 768. my question is how to make my application automatically resize according to the resolution ?
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不做绝对定位,你创建一个基于百分比和锚定到边缘的 UI,这样,flex 就会为你处理大小调整。
如果您使用绝对定位,您将需要监听 Resize 事件,然后开始计算每个元素的高度、宽度、x、y。
You don't do absolute positioning, you create a UI based on precentages and on anchoring to edges, this way, flex will handle resizing for you.
if you use absolute positioning you will need to listen to the Resize event and then start calculating the height, width, x, y of each element.