Reputation: 17651
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
Upvotes: 3
Views: 3361
Reputation:
just add the following code to your manifest file:
<activity
android:screenOrientation="portrait">
Are you adding following code to activity only?
Upvotes: 6