我有一个沿路径移动的位图图像,我想要的是能够在沿着路径移动时检索位图的x和y。
感谢
答案 0 :(得分:0)
修改强>
我认为你的意思是ImageView而不是Bitmap。您使用位图设置ImageView的图像,而位图不是视图。
尝试使用
int[] loc = new int[2];
imageView.getLocationOnScreen(loc)
或
int[] loc = new int[2];
imageView.getLocationInWindow(loc)