我有一个为UWP构建的ionic + angular + cordova应用程序,并且我已在所有页面中将屏幕方向锁定锁定为横向模式。 但是当我在平板电脑[Panasonic FZ-G1 + Windows 10]中进行测试时,此功能 仅在我切换到平板电脑模式时有效。我希望无论平板电脑在哪种模式下都可以使用此功能。
this.platform.ready().then(() => {
if (this.platform.is('cordova')) {
console.log("landscape");
this.screenOrientation.lock(this.screenOrientation.ORIENTATIONS.LANDSCAPE);
}
});
我也在config.xml中尝试过,甚至没有用
<preference name="Orientation" value="landscape" />
对此有何想法?