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.
|
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.
| |||||||
feedback
|
|
You could try with PhoneGap that provides API to access the accelerometer from javascript. Here the documentation. | ||||
|
feedback
|
|
If you are trying to access the accelerometer from a webpage hosted on a server (verus one integrated into a native application through You might also want to check out this SO post: Detect rotation of Android phone in the browser with javascript | |||
|
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. | |||||||||
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 | |||
|
feedback
|