检索 ImageView 的坐标
我想知道是否可以获取 ImageView 的左侧和顶部坐标。 我在 ScrollView 内的相对布局内有 2 个 ImageView 。 我尝试使用 matrix = _iv.getImageMatrix();
检索 ImageView 的矩阵,但这没有帮助 Matrix{[1.0, 0.0, 0.0][0.0, 1.0, 0.0][ 0.0, 0.0, 1.0]}
。 有什么想法吗?如果 getImageMatix() 在不同的地方运行会有什么不同吗?
I would like to know if it is possible to get the coordinates, left and top, of an ImageView.
I have 2 ImageView inside a RelativeLayout inside a ScrollView.
I tried to retrieve the matrix of the ImageView with matrix = _iv.getImageMatrix();
but it is not helpful Matrix{[1.0, 0.0, 0.0][0.0, 1.0, 0.0][0.0, 0.0, 1.0]}
.
Any ideas? Would it make a difference if the getImageMatix()
is run in a different place?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个更好的方法。我在ImageView本身中实现了一个OnTouchListener,并且X,Y坐标与ImageView相对应。
Here's a better way to do it. I implemented an OnTouchListener in the ImageView itself and the X,Y coordinates are corresponding to the ImageView.