I have an activity showing preview from camera, so it need to be set as landscape only. At the bottom (regardless of device rotation) I want to show a text view. I am using OrientationEventListener which gives device's orientation from its natural position. I can implement a solution which works well on portrait default devices but to make it work also on landscape default devices I need to be aware of running on such a device. Thus the question is how to check it?
|
This method can help:--
|
|||||
|
|
Well, you can find out what current orientation is the way @Urboss said. You cannot get the layout (landscape/portrait) that way ofcourse, so you'll have to get the screen width/heigth to check if the current (be it changed or not, but you've checked that ;) ) position is landscape or portrait:
(so if the rotation is 0 and you get landscape with above metrix, your device is default landscape. If the rotation is 90 degrees and you're portrait, the default is also landscape, and so on) |
|||
|
|
|
Here's my solution:
Display.getRotation() is only supported in API level 8 or higher so if you need to support older devices you'll need to call Display.getOrientation(). |
|||
|
|
|
After hours and hours of trying to figure this out. It's not possible. However, the closest thing you can do is to set the orientation to "NOSENSOR"
What this will do is set your application to the natural orientation of the device. At this point you can get the height and width of the display using the DisplayMetrics class, and calculate if you are in landscape or portrait. After you then figure out if it's landscape or portrait, you can then do this setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_XXXXX); Where XXXX is either LANDSCAPE or PORTRAIT. The case where doing this may not work is if you have a slide out keyboard. |
|||||
|
|
Thanks to diyism's excellent answer above, I also added the logic to check the actual orientation position (landscape right, portrait, landscape left, portrait flipped):
This code is also posted here: http://www.pocketmagic.net/?p=2847 |
|||
|
|
|
@Urboss, it can't. You need to know the default orientation of the device first, because both methods return the changes based on it (I mean, if the default is portrait, the result you are looking for will be 1 or ROTATE_90 -so it is landscape-, but, if the default is landscape, the result is 0). And as far as I know, finding the default orientation of the device is not trivial :( Anybody can throw some light in this topic? |
|||
|
|
My solution(tested at HTC desire and SamSung galaxy tab 10.1):
|
|||
|
|
|
|
|||||
|
|
It can be done using Display.getOrientation() or Display.getRotation() (for API level >= 8). |
|||||
|
Here is the code: