I have an activity which should always be displayed in Landscape mode. So i added android:screenOrientation="landscape". But the problem is when i rotate the device by 180 degrees, the display is inverted. is there a way to handle this issue so that the screen elements are always shown correctly.?

link|improve this question

65% accept rate
So you want it to either be in landscape or reverse landscape? – Robby Pond Mar 24 '11 at 19:16
@RobbyPond right now i am facing one issue in which i want my application to be landscape and reverse landscape as well. so what if i require in both the mode? – Paresh Mayani Nov 15 '11 at 6:48
feedback

5 Answers

Actually what you really want is to specify:

android:screenOrientation="sensorLandscape"

in your AndroidManifest.xml. This will listen to the sensor data while snapping between landscape and reverseLandscape.

link|improve this answer
+1 Thanx CaseyB, it just take 1 minute to implement both the orientation. Once again thanx for saving my valuable time. – Paresh Mayani Nov 15 '11 at 6:51
1  
FYI, it works only for Tablet, i have tested the same but it always display app in portrait mode by default i.e. its not working in phone – Paresh Mayani Nov 15 '11 at 8:59
sensorLandscape was added into Froyo (2.2) so it will work on any devices that have that or later. – CaseyB Nov 15 '11 at 18:10
ok got your point. Thanx for the great catch. – Paresh Mayani Nov 16 '11 at 4:43
feedback
up vote 4 down vote accepted

So just for everyone information, this is what i did.

  1. In Android manifest added android:screenOrientation="landscape".
  2. In on resume method add these lines of code
Display display = ((WindowManager) getSystemService(WINDOW_SERVICE)).getDefaultDisplay();
int orientation = display.getRotation();

if(orientation==Surface.ROTATION_180)
{
      setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE);
}

This way my screen is always positioned correctly even if user holds the device upside down.

link|improve this answer
feedback

Hmmm. This depends a bit on the framework version you're using as well. Try this ast a start:

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

If that works great. If it dosen't you have to tell us a little more about the layout of your app.

link|improve this answer
Yes. i did that. here is what is put in my onResume method Display display = ((WindowManager) getSystemService(WINDOW_SERVICE)).getDefaultDisplay(); int orientation = display.getRotation(); if((orientation==Surface.ROTATION_90) || (orientation==Surface.ROTATION_270)){ setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); }else if(orientation==Surface.ROTATION_180){ setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE); – prashant Mar 24 '11 at 19:14
that in all fairness should work. Good job! – Taranasus Mar 24 '11 at 19:43
feedback

In the Android Manifest write this:

   android:configChanges="orientation"
              android:screenOrientation="landscape"

like in the example below.

 <activity android:name=".MainActivity"
              android:label="@string/app_name"
              android:configChanges="orientation"
              android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
link|improve this answer
feedback

The good method is to use

setRequestedOrientation(6);

6 is the value for sensorLandscape but it seem's that there is no defined constant for it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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