作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对如何使用 MotionEvent 的 getPressure 测量有疑问。我想测量用户触摸屏幕时施加在屏幕上的压力。谁能给我一些 sample 左右。
还有一个问题: 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
}
关于android--如何使用measure getPressure,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13005362/
我对如何使用 MotionEvent 的 getPressure 测量有疑问。我想测量用户触摸屏幕时施加在屏幕上的压力。谁能给我一些 sample 左右。 还有一个问题: getPressure:1.
有谁知道为什么 getPressure() 总是返回 1.0? 这是我的代码: @Override public boolean onTouchEvent(MotionEvent event)
我需要为 iPad 创建一个应用程序,客户端可以在其中签名,我可以获得触摸的坐标、加速度和压力。对于绘制,坐标和加速度没问题。但我无法承受压力。我尝试使用 CPBPressureTouchGestur
我正在开发一个使用函数作为标题的程序。 存在一个问题,即上述功能在 API 网站上没有它们的指标。 为了避免误会,这里举一个我之前提到的“metric”的例子。 例。大小=像素,压力=千克(kg) 我
我是一名优秀的程序员,十分优秀!