Question

I've built an app, and I want to test it in the landscape view. Every time I emulate the code, I have to change the device orientation in the emulator. Is there any way to modify the emulator config so that the default orientation is landscape?

Was it helpful?

Solution

The emulator tab remembers the orientation whenever I switch to it. Is is possible you're using something like setAutoRotate (https://software.intel.com/en-us/node/493045) or setRotateOrientation (https://software.intel.com/en-us/node/493051) in your init code (the device ready code)? That might be doing it.

OTHER TIPS

That is possible do it the way next:

  1. Go the project properties.
  2. Build Settings
  3. Orientation

You select, landscape or portrait. If you emule the project, you see the changes.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top