Disable auto-rotate in Jquery Mobile or PhoneGap

前端 未结 4 1949
梦毁少年i
梦毁少年i 2021-02-14 01:02

Although cross platform development for mobile devices is so good. There isn\'t a simple option to disable auto-rotate or lock into one orientation i.e. portrait or landscape.

4条回答
  •  你的背包
    2021-02-14 01:43

    For iOS, edit the PhoneGap.plist file (e.g. in Xcode). Make sure only portrait is set and uncheck autorotate.

    On Android, you need to edit AndroidManifest.xml. Add android:screenOrientation="portrait" in the activity.

提交回复
热议问题