MyLocationNewOverlayを使用する私のマップビューでユーザーの現在の位置を表示できます。OSMdroidを使用してMyLocationNewOverlayからgeopointを取得する方法
mylocation = new MyLocationNewOverlay(mapView);
mylocation.enableMyLocation();
mylocation.enableFollowLocation();
IMyLocationProvider s= mylocation.getMyLocationProvider();
mylocation.getMyLocation();
mapView.getOverlays().add(mylocation);
ルートを作成するには、私はmylocation.getMyLocation /mylocation.getLastFix(によって、ユーザの現在位置を取得しようとした)が、両方がnullを返します。どのようにgeopoint /緯度の長いポイントを取得するには?