Jak Azlam powiedział można użyć View.getLocationInWindow() uzyskać współrzędne X, Y.
Oto przykład:
Button button = (Button) findViewById(R.id.yourButtonId);
Point point = getPointOfView(button);
Log.d(TAG, "view point x,y (" + point.x + ", " + point.y + ")");
private Point getPointOfView(View view) {
int[] location = new int[2];
view.getLocationInWindow(location);
return new Point(location[0], location[1]);
}
Bonus - Aby uzyskać punkt środkowy danego widoku:
Point centerPoint = getCenterPointOfView(button);
Log.d(TAG, "view center point x,y (" + centerPoint.x + ", " + centerPoint.y + ")");
private Point getCenterPointOfView(View view) {
int[] location = new int[2];
view.getLocationInWindow(location);
int x = location[0] + view.getWidth()/2;
int y = location[1] + view.getHeight()/2;
return new Point(x, y);
}
Mam nadzieję, że przykładem może być jeszcze przydatny do kogoś.
** getLocationInWindow (int []) ** i ** getLocationOnScreen (int []) ** ma parametr. Czy jesteś pewien swojego pomysłu? – hakiko
@hakkikonu spójrz na moją odpowiedź, aby zrozumieć użycie ** getLocationInWindow (int []) **. –