How can I get my AIR (flash as3) app to display in full screen on Android? [duplicate]
At the moment it displays in a smaller window within the screen and makes most of the screen white. What I would like is for it to be stretched to fill the screen. T开发者_运维百科hanks for any help.
during initialization of your application you can use flash.system.Capabilities to get the device's screen size and PPI for scaling / layout:
Screen Width: flash.system.Capabilities.screenResolutionX
Screen Height: flash.system.Capabilities.screenResolutionY
Piexls-Per-Inch: flash.system.Capabilities.screenDPI
精彩评论