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

There are a lot of cool widgets out there that will enable and disable auto rotate on your phone. Disabling it turns it off across all apps on the phone.

Any ideas how they are accomplishing it?

share|improve this question

2 Answers

up vote 19 down vote accepted

This should do the trick for you:

public static void setAutoOrientationEnabled(ContentResolver resolver, boolean enabled)
{
  Settings.System.putInt(resolver, Settings.System.ACCELEROMETER_ROTATION, enabled ? 1 : 0);
}

You can find the documentation here

share|improve this answer
1  
This seems to work, but it locks you it locks the orientation in landscape for me even if I'm in portrait. I am testing on a honeycomb tablet so I'm not sure if there's a difference.... Is this the expected behavior? – christoff Jun 29 '11 at 20:31

They probably modify Settings -> Display -> Auto-rotate screen

share|improve this answer

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.