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.?
feedback
|
|
Actually what you really want is to specify:
in your AndroidManifest.xml. This will listen to the sensor data while snapping between landscape and reverseLandscape. | |||||||||||
feedback
|
|
So just for everyone information, this is what i did.
This way my screen is always positioned correctly even if user holds the device upside down. | ||||
|
feedback
|
|
Hmmm. This depends a bit on the framework version you're using as well. Try this ast a start:
If that works great. If it dosen't you have to tell us a little more about the layout of your app. | |||||
feedback
|
|
In the Android Manifest write this:
like in the example below.
| |||
|
feedback
|
|
The good method is to use
6 is the value for sensorLandscape but it seem's that there is no defined constant for it. | |||
|
feedback
|