Just wondering, is there a way to gain the value of the light sensor on an Android phone without waiting for an onSensorChanged() event to occur? To save battery I use registerListener() and unregisterListener() after getting a single lux value, however the next time I register the listener to get another value, if that value is the same as before, my application sits there waiting for an event which may take a while to occur (typically in low-light situations).
So, is there a way I can read the lux value without waiting for an onSensorChanged() event? Or should I just have a 100ms timeout and then use the last value I recorded?
Thanks!