Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am developing a Blackberry app using Phonegap. In this how can I disable landscape mode and allow only portrait mode?

share|improve this question

1 Answer

up vote 1 down vote accepted

Update the config file and add the code below

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

And to detail you may be look the

http://cmer.uoguelph.ca/freshlabs/Lab5A.pdf

share|improve this answer
Is it for Blackberry? I included in config.xml but is not working. Can you please tell me where exactly to include this? – user Dec 21 '12 at 10:53
Another question asked in groups.google.com/forum/?fromgroups=#!topic/phonegap/… and that may help you. – ElitCenk Dec 21 '12 at 11:47
Thank you so much ECenk, it's working:) – user Dec 26 '12 at 6:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.