跳到主要内容
版本:v4

屏幕方向

Capacitor 应用中的屏幕方向

许多应用在竖屏和横屏设备方向下都能很好地工作。然而,也有很多应用不行,并且有充分的理由要求应用完全或偶尔以某种模式运行。

全局方向设置

要为你的 Capacitor 应用设置全局方向设置,你需要为你目标平台设置必要的配置值。

iOS 配置

iOS 允许在 iPhone 和 iPad 上支持不同的屏幕方向。要限制允许的方向,请打开 Xcode 并打开 Info.plist 文件。找到以下键:Supported interface orientationSupported interface orientation (iPad)。使用这些值,指定你想为 iPhone 和 iPad 支持的不同方向。

如果直接编辑 Info.plist 文件,请查找以下键:UISupportedInterfaceOrientationsUISupportedInterfaceOrientations~ipad。例如,以下设置将限制 iPhone 为正向竖屏方向,iPad 为横向方向:

  <key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationLandscapeRight</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
</array>

Android 配置

在 Android 上,可以通过修改 AndroidManifest.xml 并在主应用 Activity 的 <activity> 条目上设置 android:screenOrientation 来设置方向。有关可能条目的详细信息,请参见 Android Manifest 文档

动态方向设置

许多应用需要支持多种方向,并能够根据内容偶尔锁定方向。

Capacitor 通过 @capacitor/screen-orientation 插件支持此功能:

npm install @capacitor/screen-orientation@latest-4
npx cap sync

然后,使用 lockunlock 方法:

import { ScreenOrientation } from '@capacitor/screen-orientation';
...
await ScreenOrientation.lock({ orientation: 'portrait' });
await ScreenOrientation.lock({ orientation: 'landscape' });

// 解锁方向将恢复到全局设置:
await ScreenOrientation.unlock();

有关可能的方向值和配置选项的完整范围,请参见方向插件文档

iPad 方向锁定

默认情况下,iPad 允许多任务处理且其方向无法锁定。如果你需要在 iPad 上锁定方向,请将选项 Requires Full Screen 设置为 YES,方法是将以下内容添加到 Info.plist

	<key>UIRequiresFullScreen</key>
<true/>