我使用 bluestacks 作为模拟器,使用 eclipse 调试和测试 android 应用程序。但问题是我无法在 bluestacks 中以纵向模式运行应用程序。即使我将设置中的“应用程序大小”更改为“平板电脑”视图和“默认”视图,所有应用程序都仅在横向模式下运行。(我担心我的bluestacks版本-beta版-只有这两种模式,并且缺少“电话”视图和“大手机”视图-这是什么原因?原始版本有更多视图吗?)但是一旦我将“LinkedIn”应用程序视图更改为“默认”,它在模拟器上以纵向模式显示,但整个模拟器已经旋转了 90 度,所以没有用..!请帮我。我想要肖像中的蓝叠!
4 回答
在系统托盘中,右键单击菜单中的蓝色堆栈图标,选择第三个选项“旋转肖像应用程序”选择启用。
下次只有 PORTRAIT APP 在竖屏模式下工作.. 尝试游戏 DOTS 测试
- Look for the Bluestack icon in the system tray.
- Right click on the Icon and you will get a menu, hover the mouse on the "Rotate Portrait App" and you can select the following options as per your requirement.
a. Automatic - Selected By Default - It will rotate the app player in portrait mode for portrait apps.
b. Disabled - It will force the portrait apps to work in landscape mode.
c. Enabled - It will force the portrait apps to work in portrait mode only.
To force the emulator to run activity in portrait mood, you have to define the attribute android:screenOrientation="portrait"
in manifest file.
<activity
android:name=".MainActivity"
android:screenOrientation="portrait">
</activity>
After doing this, the particular activity runs on portrait mood.
The important thing is, YOU CAN'T ROTATE BLUESTACK EMULATOR JUST AS THE DEFAULT EMULATOR
我发现最好的选择是使用“Youwave Android”而不是 Bluestacks 作为模拟器。Youwave 提供了轻松更改方向的工具(但配置它有点棘手和困难)。
我在这里有同样的问题。我试图在 bluestacks 中更改 android 启动器的屏幕方向及其主要设置。您可能必须使用您的编码来编程其屏幕方向。此链接也可能对您有所帮助。强制“纵向”定向模式