AVD 中没有键盘时横向模式无法工作?

发布于 2024-10-08 20:49:33 字数 302 浏览 6 评论 0原文

我创建了两个 AVD,一个带硬件键盘,另一个没有。当我在数字键盘上单击 CTRL + F11/F12 或 7/9 时,带键盘的一个在 Android 屏幕中显示横向模式,但在 AVD 中没有硬件键盘,硬件都会改变方向,就像第一个 AVD 一样,但 Android 屏幕保持不变,不会将方向更改为横向,如下所示: http://img571.imageshack.us/img571/3624/landscapeh.jpg

I've created two AVDs, one with hardware keyboard, and other without..the one with keyboard shows the landscape mode in the android screen when I click CTRL + F11/F12 or 7/9 on numpad, but in the AVD with no hardware keyboard, the hardware things all change orientation, like the first AVD, but the android screen stays and doesn't change orientation to landscape, like this: http://img571.imageshack.us/img571/3624/landscapeh.jpg

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

世界等同你 2024-10-15 20:49:33

这是 2.3 AVD 中的一个错误,已在此处得到解答

Android - 模拟器处于横向模式,屏幕不旋转

This is a bug in the 2.3 AVD and it is already answered here

Android - Emulator in landscape mode, screen does not rotate

北城半夏 2024-10-15 20:49:33
  1. 运行“Android SDK 和 AVD 管理器”
  2. 选择 AVD
  3. 编辑
  4. 检查键盘盖支持
    如果值为 no,则设置为 yes。
  5. 运行 AVD 并尝试

祝你好运!

  1. Run 'Android SDK and AVD Manager'
  2. Select AVD
  3. Edit
  4. check Keyboard lid support
    if value is no, set to yes.
  5. Run AVD and try

Good luck!!

浅紫色的梦幻 2024-10-15 20:49:33

我在 API 19 (Android 4.4.2) 上也遇到了同样的问题。我希望支持在横向模式下运行。尽管在编辑设备时将“方向”设置为“纵向”(在“启动大小和方向”下),但设备将始终启动“纵向”。

我最终在 hardware-qemui.ini 文件中手动切换宽度和高度。

因此,在文本编辑器中编辑此文件:

C:\Users\<user>\.android\avd\<deviceName>.avd\hardware-qemu.ini

切换宽度和高度的值,使宽度比高度长:

hw.lcd.width = 800
hw.lcd.height = 480

AVD 现在以横向模式启动。方向仍然可以通过快捷键更改。

I had the same problem with an API 19 (Android 4.4.2). I had wanted to only support running in Landscape mode. Despite setting Orientation to Portrait when editing the device (under Startup size and orientation), the device would always start Portrait.

I ended up manually switching the width and height in the hardware-qemui.ini file.

So, edit this file in a text editor:

C:\Users\<user>\.android\avd\<deviceName>.avd\hardware-qemu.ini

Switch the values of the width and height, so that the width is longer than the height:

hw.lcd.width = 800
hw.lcd.height = 480

The AVD now boots in Landscape mode. The orientation may still be changed with shortcut keys.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文