我必须通过用两根手指伸展来显示需要放大的图像。 并使用相同的过程缩小。
/** Calculate the mid point of the first two fingers */
private void midPoint(PointF point, WrapMotionEvent event) {
float x = event.getX(0) + event.getX(1);
float y = event.getY(0) + event.getY(1);
point.set(x / 2, y / 2);
}
它不起作用。 研究它的任何好的链接或教程???