屏幕方向配置
Capacitor 应用中的屏幕方向
许多应用在竖屏和横屏方向下都能正常工作。然而,很多应用并非如此,而且有充分的理由要求应用完全或偶尔在一种或另一种模式下运行。
全局方向设置
要为您的 Capacitor 应用设置全局方向设置,您需要为您所针对的平台设置必要的配置值。
iOS 配置
iOS 允许在 iPhone 和 iPad 上支持不同的屏幕方向。要限制 iOS 允许的方向,打开 Xcode 并打开 Info.plist 文件。找到以下键:Supported interface orientation 和 Supported interface orientation (iPad)。使用这些值,指定您希望为 iPhone 和 iPad 支持的不同方向。
如果直接编辑 Info.plist 文件,请查找以下键:UISupportedInterfaceOrientations 和 UISupportedInterfaceOrientations~ipad。例如,以下设置将限制 iPhone 仅使用正向竖屏 Portrait 方向,而 iPad 可以使用任意 Landscape 方向:
<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 通过 cordova-plugin-screen-orientation 插件支持此功能:
npm install cordova-plugin-screen-orientation
npx cap update
然后,使用 window.screen.orientation 上的 lock 和 unlock 方法:
window.screen.orientation.lock('portrait');
window.screen.orientation.lock('landscape');
// 解锁方向将回退到全局设置:
window.screen.orientation.unlock();
请参阅 Orientation Plugin 文档 了解完整的方向值范围和配置选项。