Is there a way to make an application completely ignore a screen orientation change?
-
Just one note that apparently in Android 1.5 there is a bug. If you use a custom screen size (e.g. 800x480, like on the Apad) and force it to landscape (either via XML or from the code) then it will be in fact in portrait. – Dornbi Oct 01 '10 at 09:04
-
You may just call `Screen.lockOrientation(this)` from https://github.com/delight-im/Android-BaseLib/blob/master/Source/src/im/delight/android/baselib/Screen.java if you want to lock and unlock the orientation from code (which is more flexible) – caw Mar 04 '15 at 18:33
7 Answers
It is possible, quite easily, to override the default behavior and forbid a screen orientation change when the keyboard is open/closed.
Modifying the manifest
Open the manifest, switch to the Application tab and select the desired Activity you wish to override for the orientation change behavior.
Within Attributes you need to change two fields: Screen orientation: select either portrait or landscape - whichever is desired. This will be the default layout.
Select events for Config changes you wish to override: In this case these are keyboardHidden and orientation.
Modifying the Activity implementation
Now you need to override a single function within desired Activity.
Just add the function below to your Activity's class.
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
}
This is the default implementation if using the Source->Override/Implement Methods
menu option.
That's it! Now your orientation will always be kept.
Remember that this setting is per Activity - so you need to repeat this step for each Activity you wish to forbid the orientation change!
(Based on SDK 1.1)

- 30,738
- 21
- 105
- 131

- 68,043
- 8
- 59
- 60
-
16Doesn't simply calling through to the superclass not change anything at all? – mxk Sep 11 '09 at 13:05
-
10I was just playing around with something very similar - I think the changes to the Manifest file are sufficient, at least they were for me (which seems logical, as Matthias pointed out). – alex_c Sep 11 '09 at 16:28
-
to change in manifest is sufficient to lock the orientation, then what is the purpose of onConfigurationChanged()? – Datta Kunde Jun 24 '11 at 04:46
-
As far for my tests: if you'll just change the manifest, without overriding the onConfigurationChanged function, the onCreate() and the whole activity lifecycle events will be invoked. If You'll change the manifest AND override the onConfigurationChanged function, it won't be called. – ofirbt Jul 05 '11 at 16:12
You can make the same change in code with the following line (called in an activity):
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
Once you make this call, your application will stay in landscape (or portrait) mode. You can use the same call (with a different ActivityInfo enum) to make it sensitive to the orientation shifting again.
There's a full DevX article on the topic in Developing Orientation-Aware Android Applications.
(WARNING: since I've posted this link DevX has put up a registration wall.)

- 30,738
- 21
- 105
- 131

- 11,213
- 8
- 41
- 38
-
This is the only answer that worked for me with Android 2.2. Thanks! – Zach Rattner Sep 10 '10 at 03:45
If you are setting either by AndroidManifest.xml
or with the setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
you are going to run into issues with tablets. Their natural/default orientation is landscape.
If you truly want to completely ignore screen orientation changes I would use this setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
value. I talk more about it in Stack Overflow question Android natural sensor orientation help.
Here is the xml:
<activity
android:name=".MyActivity"
android:screenOrientation="nosensor"
android:configChanges="orientation|keyboardHidden|keyboard"/>

- 1
- 1

- 7,371
- 2
- 31
- 54
-
-
1I'm not sure I follow... That is the point, to avoid rotating the screen. – bytebender May 27 '15 at 17:18
-
"completely ignore screen orientation changes" means that when rotated, the data will remain the same. – Don Larynx May 27 '15 at 19:54
You can define your activity in the AndroidManifest.xml
file like this:
<activity
android:name=".MyActivity"
android:screenOrientation="portrait"
android:configChanges="orientation|keyboardHidden|keyboard"/>`
In this case you should set the property for each activity. I didn't find an inline solution for all applications.

- 30,738
- 21
- 105
- 131

- 5,594
- 2
- 25
- 22
You want to read the current orientation and keep it this way throughout all the activity's lifetime, so what I did is the following, at the end of onCreate:
// choose an orientation and stay in it
if(getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE)
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
else if(getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT)
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

- 361
- 3
- 14