I have registered a listener on , MotionSensors, now whenever Motion change Method "onSensorChange()" will be called.
I know these calls intitates from SensorManager.java class. I want to know how these sensors change events comes from JNI, How JNI trigger change Event and send it to Framework(SensorManager.java).
If you know where exactly is the code it is not difficult to check how it works. So the main part is here:
This code is run in a separate thread
SensorThreadRunnable
constantly (while (true)
). At first it calls native functionsensors_data_poll
which returns the identifier of the sensor that have changed it's value (or -1 if there is no such sensors). If it returns -1 the cycle is started from the beginning. If the sensor values have been changed then from the sensor identifier created sensorObject (final Sensor sensorObject = sHandleToSensor.get(sensor);
). After that there is a cycle that runs across all the registered listener and if a listener is listen to this sensor object it is notified that the value of the sensor has been changed.