将 Android 手机应用程序锁定为纵向模式

发布于 2024-10-18 11:08:04 字数 56 浏览 5 评论 0原文

有人可以告诉我如何将我的应用程序锁定为纵向模式吗?是不是在manifest文件中进行了简单的配置?

Can someone tell me how to lock my application to a portrait mode? Is it a simple configuration in the manifest file?

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

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

发布评论

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

评论(4

凝望流年 2024-10-25 11:08:04

是的。将 android:screenOrientation="portrait" 添加到主要 Activity 下的清单中。

<activity android:name=".yourActivity" android:screenOrientation="portrait"... />

Yes. Add android:screenOrientation="portrait" to the manifest under your main activity.

<activity android:name=".yourActivity" android:screenOrientation="portrait"... />
谎言 2024-10-25 11:08:04

是的!它是活动标签的一个属性:

<activity android:name=".yourActivity" android:screenOrientation="portrait" ... />

Yes! It's an attribute of the activity tag:

<activity android:name=".yourActivity" android:screenOrientation="portrait" ... />
紫瑟鸿黎 2024-10-25 11:08:04

另外,您可能必须将以下内容添加到您的活动元素中:

android:configChanges="keyboardHidden"

这样,当用户打开滑动键盘时,操作系统不会更改方向。

Also, you may have to add the following to your activity element:

android:configChanges="keyboardHidden"

That way, the OS won't change the orientation when the user opens a sliding keyboard.

木有鱼丸 2024-10-25 11:08:04

这些答案都不适用于我的系统,但我确实发现以下内容非常适合我开发的一个简单应用程序:

MainActivity.java 中添加:

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

onCreate ()

这是我的:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
}

我知道这不是(总是)锁定方向的最佳实践,但在特殊情况下它是有效的,我只是在继续开发时暂时想要这个。

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:

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

to onCreate ()

This is mine:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
}

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.

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