マップ アクティビティでユーザーの緯度と経度を表示するこのメソッドがあります。
public void animateMap(Location location){
double lat = location.getLatitude();
double lng = location.getLongitude();
Toast.makeText(MyMapActivity.this,
"Sie sind an\n" + lat + "\n" + lng, Toast.LENGTH_SHORT)
.show();
GeoPoint point = new GeoPoint((int) (lat * 1E6), (int) (lng * 1E6));
mapController.animateTo(point, new Message());
mapOverlay.setPointToDraw(point);
}
メソッドに Geocoder を実装する方法は? したがって、Toast は座標ではなく場所の住所を表示します。