On Tue, Oct 12, 2010 at 8:52 AM, Kimi <[email protected]> wrote: > Is this possible to access a sensor data form native code without > using Java at all?
I do not believe so. > I need to access to the sensor as fast as possible, > but it seems like the "DELAY_FASTEST" parameter when registering an > event change is not fast enough. The other DELAY_ parameters introduce an actual delay, on the order of such-and-so milliseconds. DELAY_FASTEST is a 0-millisecond delay, so it is as fast as you are likely to get. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android 2.2 Programming Books: http://commonsware.com/books -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

