横向模式 - Android
我希望我的应用程序只能在横向(水平)下运行,并把我的线条显示出来:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试
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
您使用什么设备进行测试?
“反转景观”方向出现在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.