Using MyLocationNewOverlay I can show user's current location in my mapview.
mylocation = new MyLocationNewOverlay(mapView);
mylocation.enableMyLocation();
mylocation.enableFollowLocation();
IMyLocationProvider s= mylocation.getMyLocationProvider();
mylocation.getMyLocation();
mapView.getOverlays().add(mylocation);
To create a route, I've tried to get user's current location by mylocation.getMyLocation /mylocation.getLastFix() but both return null. How to retrive the geopoint/lat long points?