How can I check if the Android phone is in Landscape or Portrait?
|
feedback
|
|
The current configuration, as used to determine which resources to retrieve etc, as available from the Resources' Configuration object as:
http://developer.android.com/reference/android/content/res/Configuration.html#orientation | |||||||||||||||
feedback
|
|
If you use getResources().getConfiguration().orientation on some devices you will get it wrong. We used that approach initially in http://apphance.com. Thanks to remote logging of Apphance we could see it on different devices and we saw that fragmentation plays its role here. I saw weird cases: for example alternating portrait and square(?!) on HTC Desire HD:
or not changing orientation at all:
On the other hand, width() and height() is always correct (it is used by window manager, so it should better be). I'd say the best idea is to do the width/height checking ALWAYS. If you think about a moment, this is exactly what you want - to know if width is smaller than height (portrait), the opposite (landscape) or if they are the same (square). Then it comes down to this simple code:
| ||||
|
feedback
|
|
Use getResources().getConfiguration().orientation it's the right way. You just have to watch out for different types of landscapes... the landscape that the device normally uses and the other. Still don't understand how to manage that... | |||
|
feedback
|
|
Here is code snippet demo how to get screen orientation was recommend by hackbod and Martijn: ❶ Trigger when change Orientation:
❷ Get current orientation as hackbod recommend:
❸There are alternative solution for get current screen orientation ❷ follow Martijn solution:
★Note: I was try both implement ❷ & ❸, but on RealDevice (NexusOne SDK 2.3) Orientation return not correct: Return wrong orientation ★So i recommend to used solution ❷ to get Screen orientation which have more advantage: clearly, simple and work like a charm. ★Check carefully return of orientation to ensure correct as our expected (May be have limited depend on physical devices specification) Hope it help, | |||
|
feedback
|
| ||||
|
feedback
|
|
There is one more way of doing it:
| ||||
|
feedback
|
|
A fully way to specify the current orientation of the phone:
Chear Binh Nguyen | |||
|
feedback
|
|
I think this code may work after orientation change has take effect
override Activity.onConfigurationChanged(Configuration newConfig) function and use newConfig,orientation if you want to get notified about the new orientation before calling setContentView. | |||
|
feedback
|