I know that in Safari on an iPhone you can detect the screen's orientation and change of orientation by listening for the onorientationchange event and querying window.orientation for the angle.

Is this possible in the browser on Android phones?

Update

To be clear, I am asking whether the rotation of an android device can be detected by JavaScript running on a standard web page. It is possible on an iPhone and I wondered whether it could be done for Android phones.

Thanks

link|improve this question

80% accept rate
5  
You should probably choose an Answer since this has been open almost a year. – donohoe Aug 25 '10 at 14:14
feedback

7 Answers

up vote 76 down vote accepted

The short answer is "YES". To detect an orientation change on an Android browser, add a listener for either the 'orientationchange' or 'resize' event on window:

// Detect whether device supports orientationchange event, otherwise fall back to
// the resize event.
var supportsOrientationChange = "onorientationchange" in window,
    orientationEvent = supportsOrientationChange ? "orientationchange" : "resize";

window.addEventListener(orientationEvent, function() {
    alert('HOLY ROTATING SCREENS BATMAN:' + window.orientation + " " + screen.width);
}, false);

You can then check the window.orientation property to figure out which way the device is oriented. With Android phones, screen.width or screen.height also updates as the device is rotated. (this is not the case with the iPhone).

link|improve this answer
This doesn't appear to work on a Nexus One – Jeremy Mar 5 '10 at 16:50
updated the code for nexus one – jb. Mar 5 '10 at 23:53
does this really work? i tried jquery $(window).bind("orientationchange",fn); but it didnt work, do i have to use the form above? i tried "onorientationchange" in window, it retuns false – Ayyash Aug 16 '10 at 1:19
It works well. Ayyash - the whole point here that when "orientationchange" is not supported it will fall back to "resize" – Dror Sep 21 '10 at 8:15
4  
On the Droid this is completely insane. It alerts screen.width of 320 when the phone is rotated in landscape mode, and it detects screen.width 569 when the phone is rotated in portrait mode! How come?? – Igor G. Jul 26 '11 at 14:34
show 2 more comments
feedback

The actual behavior across different devices is inconsistent. The resize and orientationChange events can fire in a different sequence with varying frequency. Also, some values (e.g. screen.width and window.orientation) don't always change when you expect. Avoid screen.width -- it doesn't change when rotating in iOS.

The reliable approach is to listen to both resize and orientationChange events (with some polling as a safety catch), and you'll eventually get a valid value for the orientation. In my testing, Android devices occasionally fail to fire events when rotating a full 180 degrees, so I've also included a setInterval to poll the orientation.

var previousOrientation = 0;
var checkOrientation = function(){
    if(window.orientation !== previousOrientation){
        previousOrientation = window.orientation;
        // orientation changed, do your magic here
    }
};

window.addEventListener("resize", checkOrientation, false);
window.addEventListener("orientationchange", checkOrientation, false);

// (optional) Android doesn't always fire orientationChange on 180 degree turns
setInterval(checkOrientation, 2000);

Here are the results from the four devices that I've tested (sorry for the ASCII table, but it seemed like the easiest way to present the results). Aside from the consistency between the iOS devices, there is a lot of variety across devices. NOTE: The events are listed in the order that they fired.

|==============================================================================|
|     Device     | Events Fired      | orientation | innerWidth | screen.width |
|==============================================================================|
| iPad 2         | resize            | 0           | 1024       | 768          |
| (to landscape) | orientationchange | 90          | 1024       | 768          |
|----------------+-------------------+-------------+------------+--------------|
| iPad 2         | resize            | 90          | 768        | 768          |
| (to portrait)  | orientationchange | 0           | 768        | 768          |
|----------------+-------------------+-------------+------------+--------------|
| iPhone 4       | resize            | 0           | 480        | 320          |
| (to landscape) | orientationchange | 90          | 480        | 320          |
|----------------+-------------------+-------------+------------+--------------|
| iPhone 4       | resize            | 90          | 320        | 320          |
| (to portrait)  | orientationchange | 0           | 320        | 320          |
|----------------+-------------------+-------------+------------+--------------|
| Droid phone    | orientationchange | 90          | 320        | 320          |
| (to landscape) | resize            | 90          | 569        | 569          |
|----------------+-------------------+-------------+------------+--------------|
| Droid phone    | orientationchange | 0           | 569        | 569          |
| (to portrait)  | resize            | 0           | 320        | 320          |
|----------------+-------------------+-------------+------------+--------------|
| Samsung Galaxy | orientationchange | 0           | 400        | 400          |
| Tablet         | orientationchange | 90          | 400        | 400          |
| (to landscape) | orientationchange | 90          | 400        | 400          |
|                | resize            | 90          | 683        | 683          |
|                | orientationchange | 90          | 683        | 683          |
|----------------+-------------------+-------------+------------+--------------|
| Samsung Galaxy | orientationchange | 90          | 683        | 683          |
| Tablet         | orientationchange | 0           | 683        | 683          |
| (to portrait)  | orientationchange | 0           | 683        | 683          |
|                | resize            | 0           | 400        | 400          |
|                | orientationchange | 0           | 400        | 400          |
|----------------+-------------------+-------------+------------+--------------|
link|improve this answer
1  
Thanks for a very thorough answer! – RichieHindle Sep 19 '11 at 15:28
This is awesome. – ThinkingStiff Apr 17 at 8:22
feedback

You could always listen to the window resize event. If, on that event, the window went from being taller than it is wide to wider than it is tall (or vice versa), you can be pretty sure the phone orientation was just changed.

link|improve this answer
That's a good idea, I'll try that (and ask my friend with the Android phone to test!) – philnash Oct 30 '09 at 18:01
I've just realised that this method doesn't give me the orientation of the phone. I will know whether it is portrait or landscape, but not if it is upside down or has been turned to the left or to the right. Any further ideas? – philnash Nov 3 '09 at 11:44
I'm not sure how it could possibly matter... Why do you need to know if the phone is upside down? The phone's browser has a top, and the web page will be oriented to the browser's top. Any user with two brain cells to rub together who's looking at a web page upside-down will just turn their phone around if they want to see it right-side-up – Joel Mueller Nov 3 '09 at 18:54
That's a little harsh. I'm interested to know so that I can show different content based on the orientation of the screen, this could be up to 4 different pages, requiring the browser to know whether it had been rotated by 0, 90, 180 and 270 degrees. This is all possible, in JavaScript, on the iPhone and is why I am asking. – philnash Nov 5 '09 at 10:19
I'm still having a hard time picturing what a web page could usefully do differently when the device it's rendered on is rotated 270 degrees, but if you say you've got a valid use-case, I won't quibble. In that case: I'm sorry, but I have no idea if the Android browser provides this level of detail. – Joel Mueller Nov 5 '09 at 20:35
show 2 more comments
feedback

It is possible in HTML5.
You can read more (and try a live demo) here: http://slides.html5rocks.com/#slide-orientation.

window.addEventListener('deviceorientation', function(event) {
    var a = event.alpha;
    var b = event.beta;
    var g = event.gamma;
}, false);

It also supports deskop browsers but it will always return the same value.

link|improve this answer
2  
This event is really more for access to the motion sensors, although I suppose it can also be used to detect orientation change. – Gunder Aug 21 '11 at 20:46
On my Android Galaxy S2 it's not supported on the stock browser nor the Dolphin Browser. But works well with mobile firefox. – Eduardo Cereto Jan 27 at 22:55
feedback

A little contribution to the two-bit-fool's answer:

As described on the table on droid phones "orientationchange" event gets fired earlier than "resize" event thus blocking the next resize call (because of the if statement). Width property is still not set.

A workaround though maybe not a perfect one could be to not fire the "orientationchange" event. That can be archived by wrapping "orientationchange" event binding in "if" statement:

if (!navigator.userAgent.match(/android/i))
{
    window.addEventListener("orientationchange", checkOrientation, false);
}

Hope it helps

(tests were done on Nexus S)

link|improve this answer
feedback

Worth noting that on my Epic 4G Touch I had to set up the webview to use WebChromeClient before any of the javascript android calls worked.

webView.setWebChromeClient(new WebChromeClient());
link|improve this answer
feedback

Another gotcha - some Android tablets (the Motorola Xoom I believe and a low-end Elonex one I'm doing some testing on, probably others too) have their accelerometers set up so that window.orientation == 0 in LANDSCAPE mode, not portrait!

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.