我试图在android的phonegap中设置orientate to portrait,我修改了androidManifest.xml
<uses-feature android:name="android.hardware.screen.portrait" />
以及config.xml
<preference name="orientation" value="default" />
答案 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">