Force the screen to a fixed landscape orientation:
AndroidManifest.xml -> android:screenOrientation="landscape"
OR
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
Set deviceOrientation_ to CCDeviceOrientationLandscapeLeft with
Director.sharedDirector().setLandscape(true);
-> winSize() will switch height and width
whichs results in strange display behavior.
Workaround:
Director.sharedDirector().setLandscape(false);
But this is a little bit confusing :-)
Original issue reported on code.google.com by christop...@gmail.com on 4 Apr 2010 at 1:51
Original issue reported on code.google.com by
christop...@gmail.com
on 4 Apr 2010 at 1:51