简体   繁体   中英

Freeze Android orientation to portrait (Phonegap App)?

I'm developing a Android app using Phonegap - Is there any way in which I can freeze the screen rotation to only display portrait - so it doesnt move when the phone is tilted landscape?

I tried adding-

    android:screenOrientation="portrait"

to my android manifest file but this hasn't worked. I'm developing using Android 2.1

Cheers Paul

just add the following code to your manifest file:

<activity
        android:screenOrientation="portrait">

Are you adding following code to activity only?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM