Ejemplo n.º 1
0
 void setDistance(Bookmark bmk) {
   final Location loc = LocationHelper.INSTANCE.getSavedLocation();
   if (loc != null) {
     final DistanceAndAzimut daa =
         bmk.getDistanceAndAzimuth(loc.getLatitude(), loc.getLongitude(), 0.0);
     distance.setText(daa.getDistance());
   } else distance.setText(null);
 }