Are there plans to expose the set orientation functionality of iOS and Android?
iOS:
[[UIDevice currentDevice] setOrientation:UIInterfaceOrientationLandscapeLeft];
Android:
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
I know that you can set the default/start orientation in the build.settings file, but withing an app I am designing I want the ability to have certain portions display in landscape and others in portrait.
Is there a way to currently do this that I am just not seeing? It seems like my only option is to force the orientation to potrait and for the portions that need to be landscape rotate all of the on screen elements 90 degrees and swap all x and y values (or vice versa - force landscape and then switch for portrait). [import]uid: 47373 topic_id: 9250 reply_id: 309250[/import]