I am trying to get the coordinates of marker in map. I am getting the coordinates relative to mapcontainer.I am using the below code.
Projection projection = map.getProjection();
LatLng markerLocation = marker.getPosition();
Point screenPosition = projection.toScreenLocation(markerLocation);
But i want the coordinates relative to entire device screen.