Is it possible to get the current value of the Proximity Sensor in Android?
I know that I can use SensorManager and Sensor and register a state changed listener, but I have no need to be notified of every state change, so it would be highly inefficient since this code is being run in a service. Also, my code won't know the value until a state change has occurred (what if the value hasn't changed...how do I know what it is? Instead, rather than registering a listener, I just want to say:
proximitySensor.getCurrentDistance();
Is this possible?
Thanks
After looking through the documentation, it looks like you can get the distance in centimeters by subscribing to the SensorEvent and looking at the data being passed back.
There is a good example of starting to use the Proximity sensor here: Android Proximity Sensor Example
After reading a bit further into the Android docs, it looks like the array
values[0]
returns a value in centimeters. Note, look at the docs, some sensors only return binary values, meaning that the device is either near or far.