嘿伙计们我正在使用phonegap和jquery mobile为Android手机构建应用程序。是否有可能禁用应用程序的屏幕旋转。我是jquery mobile的新手。对不起,如果我问不合适的问题。
答案 0 :(得分:0)
是的,但是你必须在cordova / phonegap参数中设置它,而不是在app / www
中在你的app文件夹中有config.xml
<preference name="orientation" value="default" />
<!-- all: default means both landscape and portrait are enabled -->
答案 1 :(得分:0)
你想只使用Jquery吗?您能想到使用Android的Manifest文件来修复活动的方向吗?
更改清单文件中的以下属性:
android:screenOrientation="portrait" or android:screenOrientation="landscape" in the AndroidManifest.xml:
<activity android:name=".MyActivity"a
android:label="@string/app_name"
android:screenOrientation="portrait">
答案 2 :(得分:0)
在您的&#39; config.xml&#39;
中加入以下代码<preference name="Orientation" value="landscape" />
或
<preference name="Orientation" value="portrait" />