Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to swich the orientation of an app (without the user turning the phone.) How would i go about doing that?

share|improve this question

1 Answer

up vote 6 down vote accepted

Within an activity, you can do

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

Or the following for portrait:

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
share|improve this answer
Cool! I thought this was impossible. – Matthew Willis Apr 4 '11 at 14:30
Is there a way to change the orientation to its self so that it will restart the activity? – Ephraim Apr 4 '11 at 19:50

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.