我对如何使用度量有疑问-MotionEvent的getPressure。我想测量用户触摸屏幕时施加到屏幕上的压力。谁能给我一些样品。

还有一个问题:
   getPressure:1.0的返回值由最强按压或设备定义。

最佳答案

mSensorManager = (SensorManager) getSystemService(Context.SENSOR_SERVICE);
mPressure = mSensorManager.getDefaultSensor(Sensor.TYPE_PRESSURE);// Get an instance of the sensor service, and use that to get an instance of a particular sensor.

public final void onSensorChanged(SensorEvent event) {
float millibars_of_pressure = event.values[0];//use the pressure value
 }

10-06 07:03