Android ImageView - 无论滚动位置或缩放比例如何,都可获取点击(点击)坐标

时间:2011-11-03 21:44:45

标签: android matrix imageview coordinates

背景 我有一个ImageView,我已经修改为可滚动(拖动)和缩放(缩放缩放)。我使用了“Hello,Android”第3版中提到的确切技术here。此技术使用矩阵变换来处理滚动和缩放。

我的问题: 当用户点击图像时,无论图像如何滚动或放大,我都希望该拍子的坐标与图像本身相关。例如,如果我的图像是1000x2000,我滚动并缩放图像。然后我在某个点点击图像,我想知道与1000x2000相关的那个点,而不仅仅是屏幕区域。我怎么能这样做?

2 个答案:

答案 0 :(得分:31)

我找到了一个解决方案,使用了我从本网站上的其他问题拼凑而成的信息。为了回馈社区,我认为分享我学到的东西是正确的。希望这有助于某人:

// Get the values of the matrix
float[] values = new float[9];
matrix.getValues(values);

// values[2] and values[5] are the x,y coordinates of the top left corner of the drawable image, regardless of the zoom factor.
// values[0] and values[4] are the zoom factors for the image's width and height respectively. If you zoom at the same factor, these should both be the same value.

// event is the touch event for MotionEvent.ACTION_UP
float relativeX = (event.getX() - values[2]) / values[0];
float relativeY = (event.getY() - values[5]) / values[4];

感谢这些来源: source 1source 2

答案 1 :(得分:2)

您还可以计算逆矩阵并使用mapPoints()方法:

 // Get the inverse matrix
 Matrix inverseMatrix = new Matrix();
 matrix.invert(inverseMatrix);

 // Transform to relative coordinates
 float[] point = new float[2];
 point[0] = e.getX();
 point[1] = e.getY();
 inverseMatrix.mapPoints(point);