如何获得x和;位图的y,位图在屏幕中的位置

时间:2014-03-11 21:30:46

标签: android canvas bitmap path android-drawable

我有一个沿路径移动的位图图像,我想要的是能够在沿着路径移动时检索位图的x和y。

感谢

1 个答案:

答案 0 :(得分:0)

修改

我认为你的意思是ImageView而不是Bitmap。您使用位图设置ImageView的图像,而位图不是视图。

尝试使用

int[] loc = new int[2];
imageView.getLocationOnScreen(loc)

int[] loc = new int[2];
imageView.getLocationInWindow(loc)