横向模式 - Android

发布于 2025-01-02 00:20:46 字数 250 浏览 0 评论 0原文

我希望我的应用程序只能在横向(水平)下运行,并把我的线条显示出来:

<activity
   android:name=".HomePageActivity"
   android:screenOrientation="landscape"/>

所有这些都是水平的,但如果我将手机旋转 180 º(水平是相同的),但屏幕不 adpata,倒立。

任何人都可以帮助我吗?

谢谢

I want my application only works in landscape (horizontal) and put my line is manifest:

<activity
   android:name=".HomePageActivity"
   android:screenOrientation="landscape"/>

With all this it is horizontal, but if I turn the mobile phone 180 º (horizontal is the same) but the screen does not adpata, stands upside down.

Anyone can help me in this?

Thanks

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

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

发布评论

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

评论(2

左耳近心 2025-01-09 00:20:46

您可以尝试 android:screenOrientation="sensorLandscape",但它仅适用于 API 级别 9 (Android 2.3) 及更高版本。

http://developer.android.com/guide/topics/manifest /activity-element.html#screen

You can try android:screenOrientation="sensorLandscape", but it's only available for API level 9 (Android 2.3) and newer.

http://developer.android.com/guide/topics/manifest/activity-element.html#screen

前事休说 2025-01-09 00:20:46

您使用什么设备进行测试?

“反转景观”方向出现在2.2中。

编辑

如果您使用 API >= 9,则查找 这个。您可以使用sensorLandscape方向。

What devices do you use for testing?

"Reversal landscape" orientation appears in 2.2.

Edit

If you use API >= 9, then look for this. You can use sensorLandscape orientation.

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