Android ImageView坐标

时间:2013-07-29 21:30:25

标签: android position imageview

我是android新手,我正在寻找解决方案来获取I​​mageView的x和y坐标。我尝试使用LocationOnScreen,但它无法正常工作。我必须注意到我在使用Android动画之前移动ImageView才能获得它的位置。对我而言,它适用于较低的API - 2.2,2,3及更高版本。

提前致谢!

1 个答案:

答案 0 :(得分:0)

您可以使用getLeft()getTop()

x = imageView.getLeft();
y = imageView.getTop();

更多信息:http://developer.android.com/reference/android/view/View.html#Position