vote up 7 vote down star
1

I know that in Safari on an iPhone you can detect the screens 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 Dndroid phones.

Thanks

flag

2 Answers

vote up 5 vote down

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|flag
That's a good idea, I'll try that (and ask my friend with the Android phone to test!) – Phil Oct 30 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? – Phil Nov 3 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 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. – Phil Nov 5 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 at 20:35
show 2 more comments
vote up 1 vote down

You might want to check out this site: http://androidguys.com/?s=rotational+forces&x=9&y=9.

link|flag
Thanks, but those articles only cover Android applications. I am asking whether JavaScript on a web page can detect the rotation like an iPhone can. – Phil Oct 30 at 15:17

Your Answer

Get an OpenID
or

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