【问题标题】:Allow screen rotation on tablets, but not phones in Ionic 4允许在平板电脑上旋转屏幕,但在 Ionic 4 中不允许手机上的屏幕旋转
【发布时间】:2019-08-17 03:45:00
【问题描述】:
【问题讨论】:
标签:
ionic-framework
ionic4
【解决方案1】:
您可以使用import { Platform} from 'ionic-angular'; 检查设备,使用import { ScreenOrientation } from '@ionic-native/screen-orientation'; 旋转屏幕。
constructor(private navCtrl: NavController, private plt: Platform, private screen: ScreenOrientation) {
if (this.plt.is('tablet')) {
if (this.screen.type === 'portrait-primary') {
this.screen.lock(this.screen.ORIENTATIONS.LANDSCAPE);
}
}
}
此代码检查设备是否为平板电脑并检查屏幕是否为纵向,然后它将自动将您的屏幕旋转到横向模式。