设置方向肖像phonegap android

时间:2014-05-14 23:14:39

标签: android jquery html5 cordova screen-orientation

我试图在android的phonegap中设置orientate to portrait,我修改了androidManifest.xml

<uses-feature android:name="android.hardware.screen.portrait" />

以及config.xml

<preference name="orientation"                value="default" /> 

1 个答案:

答案 0 :(得分:3)

从androidManifiest.xml

中删除<uses-feature android:name="android.hardware.screen.portrait" />

并添加此

android:screenOrientation="portrait"

这是你的androidMadifiest.xml的一部分应该是什么样的

<activity android:name="HelloWorld" android:label="@string/app_name"
                android:theme="@android:style/Theme.Black.NoTitleBar"
                android:screenOrientation="portrait"
                android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale">