0

我是 android 新手,我正在寻找获取 ImageView 的 x 和 y 坐标的解决方案。我尝试使用 LocationOnScreen,但它不起作用。我必须注意,我正在使用 android 动画来移动 ImageView,然后才能获得它的位置。对我来说重要的是它适用于较低的 API - 2.2、2,3 和更高版本。

提前致谢!

4

1 回答 1

0

您可以使用getLeft()getTop()

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

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

于 2013-07-29T21:43:47.057 回答