When developing a compass in android, it is possible to check for reliability of sensors by inspecting the accuracy parameter passed in
onAccuracyChanged(Sensor sensor, int accuracy)
This parameter can only be 0,1,2, or three for
SENSOR_STATUS_UNRELIABLE, SENSOR_STATUS_ACCURACY_LOW, SENSOR_STATUS_ACCURACY_MEDIUM, and SENSOR_STATUS_ACCURACY_HIGH
respectively.
However, I can see many applications on the android market which display a progress-bar gauge that seems to reflect an accuracy that is divisible by more than just 4 values, in other words, these applications seems to indicate an accuracy range that is much more precise than the 4 constants.
How would someone do this?