我想锁定我在流星中构建的应用程序的方向。 资源建议安装一个cordova插件,但我不想这样做,还有另外一种方法吗?
答案 0 :(得分:2)
您只需在mobile-config.js文件中添加此行
即可App.setPreference("orientation", "portrait");
答案 1 :(得分:1)
为 manifest.xml
中的每项活动指定android:screenOrientation="portrait"
<强>如: - 强>
<activity
android:name=".activitiesName"
android:screenOrientation="portrait">
</activity>