经测试壳工程的清单文件如下配置无效(设置里开启自动横竖屏):
解决方案一:
在清单文件manifest 标签加上
xmlns:tools="http://schemas.android.com/tools"
然后加上如下配置(tools:replace 就是设置代替lib.5plus.base-release.aar中的设置)
<activity
android:name="io.dcloud.PandoraEntryActivity"
android:hardwareAccelerated="true"
android:label="@string/app_name"
android:launchMode="singleTask"
android:screenOrientation="portrait"
tools:replace="android:screenOrientation"
android:theme="@style/DCloudTheme"
android:windowSoftInputMode="adjustResize" >
</activity>
解决方案二:
通过mui的内置方法
mui.plusReady(function() {
plus.screen.lockOrientation('portrait-primary')
});