现在我有一个 ImgeView,它是一个圆圈,我想找到那个圆圈的中心点,所以我尝试了以下代码,但它似乎不起作用
int[] location = new int[2];
imageView.getLocationOnScreen(location);
int radius=imageView.getHeight()/2;
int[] center=new int[2];
center[0]=location[0]+radius;
center[1]=location[1]+radius;
所以我通过“位置”得到的坐标是不是图像视图的顶点?
请帮助我如何获得图像视图的中心点。