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?

有帮助吗?

解决方案

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.

其他提示

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top