tags:

views:

33

answers:

1

I question myself what the timestamp in SensorEvent.timestamp means. Numbers like 3548712982000 occur. It is not plausible for anything: nanoseconds/milliseconds since 1970 etc. Is this maybe some overflow error? It seems as it is different on different devices at the same time!!!

+2  A: 

Just a few seconds after this question on SO I found the answer: See http://code.google.com/p/android/issues/detail?id=7981 where is said that these are nanoseconds since uptime.

The android documentation definitively needs an update.

Sney