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.

Possible Duplicate:
How to disable orientation change in Android?

I want to disable orientation change after opening the canvas in any orientation(portrait or landscape) , but I am having problem when open the canvas in the landscape mode and change the device orientation, the orientation is not disabled.

here is the code .

public void onConfigurationChanged(Configuration newConfig) {

  super.onConfigurationChanged(newConfig);
  this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);

}
share|improve this question

marked as duplicate by Sameer, Peter O., Bill the Lizard Jan 29 at 13:26

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 2 down vote accepted

try this in your code...

if(getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE)
    {
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
    }
    else
    {
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
    }

get the orientation in oncreate and set that orientation for that activity

share|improve this answer
Thanks Thirupathig ,Great this works for me. – Vikas Panwar Nov 1 '12 at 5:41

Add a fixed orientation for your activity from manifest using this code :(put this code inside activity tag )

android:screenOrientation="portrait"
android:configChanges="orientation|keyboardHidden"

by this your activity will be displayed in portrait mode only

share|improve this answer
Thanks Shruti, but i don't want to open canvas only in one orientation it should be open in both the mode portrait and landscape initially but after opening the canvas, the orientation changes should be disabled. the above code works correctly if i opens the canvas in portrait mode. – Vikas Panwar Nov 1 '12 at 5:09
ok so may be u need to use android:configChanges="orientation|keyboardHidden" this line only.. – Shruti Nov 1 '12 at 5:27

use:

<activity android:name="YourActivity" android:configChanges="orientation|keyboardHidden">
share|improve this answer

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