Is there any way to access accelerometer data using Javascript on Android's browser? I know it supports "onorientationchange", but I'd like to get everything.

Clarification: I'm asking how to do this in a website, not a native app.

link|improve this question

I really wish android didn't allow javascript to do all this. It seems like a big security hole. – Falmarri Dec 17 '10 at 21:03
2  
From what I can tell this hasn't been implemented yet in Android. It's apple you need to be concerned about. =) – Jeff Lamb Dec 17 '10 at 21:52
feedback

4 Answers

up vote 4 down vote accepted

You could try with PhoneGap that provides API to access the accelerometer from javascript.

Here the documentation.

link|improve this answer
feedback

If you are trying to access the accelerometer from a webpage hosted on a server (verus one integrated into a native application through WebView), than the accelerometer data does not appear to be available as of now for Android. You can find a more detailed assessment here: http://www.mobilexweb.com/blog/android-froyo-html5-accelerometer-flash-player .

You might also want to check out this SO post: Detect rotation of Android phone in the browser with javascript

link|improve this answer
feedback

If I'm reading the docs correctly, you could set up a class (within Java/Android) that provides the accelerometer functionality you need in public functions.

Then setup a javascript interface for the webview using the addJavascriptInterface call, which makes the public functions in that class available to be called from within javascript.

link|improve this answer
So that would require a custom rebuild of Android? – Jeff Lamb Dec 17 '10 at 21:51
You do not need a "custom rebuild of Android". You would simply be using a feature of WebView: developer.android.com/reference/android/webkit/WebView.html – elevine Dec 18 '10 at 0:30
Oh - sorry. This would have to be via an app, right? – Jeff Lamb Dec 18 '10 at 0:47
Yes. Are you trying to do this through a website and not a WebView in a native app? If so, you might want to clarify that in your original question. – elevine Dec 19 '10 at 18:30
feedback

Looking at this post flash.sensors.Accelerometer on Android within web browser it seems accelerometer data is available to flash. So a possible workaround (at least for devices which have flash) would be a small flash applet which grabbed the data for you.

Sounds like a hack, but still sounds better than making the whole thing in flash

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.