如何在Android中加速?

时间:2016-08-16 19:30:56

标签: android accelerometer gyroscope

认为结果是M / S,这必须是浮点型

float aceleration=??

我在android中读过一些关于传感器的内容,但它返回了3个值X,Y和Z. 现在下一个是什么?或者是什么价值?

aceleration=?;// (Do I need some mathematical formula??) which one?

mSensorManager = (SensorManager) getSystemService(Context.SENSOR_SERVICE);
mSensor = mSensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER);
mSensorManager.registerListener(this,mSensor,SensorManager.SENSOR_DELAY_NORMAL);

认为你在车里然后开始行动然后加速了 想想现在你停下来然后有一个desacceleration 然后加速= ???

@Override
public void onSensorChanged(SensorEvent sensorEvent) {

float aceleration=??? //how can i get the acceleration here?

}

0 个答案:

没有答案