将 Android 手机应用程序锁定为纵向模式
有人可以告诉我如何将我的应用程序锁定为纵向模式吗?是不是在manifest文件中进行了简单的配置?
Can someone tell me how to lock my application to a portrait mode? Is it a simple configuration in the manifest file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
是的。将
android:screenOrientation="portrait"
添加到主要 Activity 下的清单中。Yes. Add
android:screenOrientation="portrait"
to the manifest under your main activity.是的!它是活动标签的一个属性:
Yes! It's an attribute of the activity tag:
另外,您可能必须将以下内容添加到您的活动元素中:
这样,当用户打开滑动键盘时,操作系统不会更改方向。
Also, you may have to add the following to your activity element:
That way, the OS won't change the orientation when the user opens a sliding keyboard.
这些答案都不适用于我的系统,但我确实发现以下内容非常适合我开发的一个简单应用程序:
在 MainActivity.java 中添加:
到 onCreate ()
这是我的:
我知道这不是(总是)锁定方向的最佳实践,但在特殊情况下它是有效的,我只是在继续开发时暂时想要这个。
None of these answers worked on my system but I did find the following worked perfectly for a simple app that I developed:
Within MainActivity.java add:
to onCreate ()
This is mine:
I know that it is not (always) best practice locking orientation, but in special circumstances it is valid and I only want this temporarily while I continue developing.