Android Maps had this nice little method on the projection for a map, MetersToEquatorPixels that let you convert between pixels and meters at the equator, and then a quick little multiplication of that result by *(1/Math.cos(Math.toRadians(latitudeofmap) would tell you how many pixels would represent the equivalent for that latitude.
What the heck is the equivalent in Maps V2? If I want to say, draw a legend, to show distance, I have to know how much distance each pixel represents in lat/lon distance, and since this method is now gone, I have no idea how the heck I can get this... So what is the equivalent in V2?
Maybe it can help you: I take it from:https://gist.github.com/amay077/6879638