accelerationIncludingGravity property
The accelerationIncludingGravity
read-only property of the
DeviceMotionEvent interface returns the
amount of acceleration recorded by the device, in meters per second
squared (m/s²).
Unlike DeviceMotionEvent.acceleration
which compensates for the influence of gravity, its value is the sum of
the acceleration
of the device as induced by the user and an acceleration equal and
opposite to that
caused by gravity. In other words, it measures the
g-force. In practice, this value
represents
the raw data measured by an
accelerometer.
This value is not typically as useful as DeviceMotionEvent.acceleration, but may be the only value available on devices that aren't able to remove gravity from the acceleration data, such as on devices that don't have a gyroscope.
Note:
accelerationIncludingGravity
's name can be misleading. This property represents acceleration including the effects of gravity. For example, if a device is lying flat on a horizontal surface with the screen pointing up, gravity would be -9.8 along the Z axis, whileacceleration.z
would be 0 andaccelerationIncludingGravity.z
would be 9.8. Similarly, if a device is in free fall with its screen horizontal and pointing up, gravity would be -9.8 along the Z axis, whileacceleration.z
would be -9.8 andaccelerationIncludingGravity.z
would be 0.
Implementation
external DeviceMotionEventAcceleration? get accelerationIncludingGravity;