当我点击Android 4.0的屏幕时, 的值getPressure()
总是1.0
。该值在Android 2.1上是可以的。有什么问题吗?测试设备为三星 Galaxy S III。代码是这样的:
@Override
public boolean onTouchEvent(MotionEvent event) {
super.onTouchEvent(event);
float allWidth = this.getWidth();
float allHeight = this.getHeight();
calculate(event.getX(), event.getY(), allWidth, allHeight,
event.getPressure());
return true;
}