Hello, I use Mapsforge, but I found the solution.
You may use the class Projection like this :
long x = motionEvent.getX();
long y = motionEvent.getY();
byte zoomLevel = this.getMapPosition().getZoomLevel();
Projection p = this.getProjection();
GeoPoint g = p.fromPixels((int)x,(int)y);
double latitude = g.getLatitude();
double longitude = g.getLongitude();
Log.v("Projection", "Coordonnées : " + latitude + " " + longitude);