public boolean onTouchEvent(MotionEvent event, MapView mapView)
     {
      if (event.getAction() == 1) {
       GeoPoint p = mapView.getProjection().fromPixels(
         (int) event.getX(),
         (int) event.getY());
       
       Geocoder geoCoder = new Geocoder(getBaseContext(),  Locale.getDefault());
       String add="";
       try {
        Iterator<Address> addresses = geoCoder.getFromLocation(
          p.getLatitudeE6()/1E6, p.getLongitudeE6()/1E6, 1).iterator();
        
        if (addresses != null)
        {
         while(addresses.hasNext()) {
          Address namedLoc = addresses.next();
          String placeName = namedLoc.getLocality();
          String featureName = namedLoc.getFeatureName();
          String country = namedLoc.getCountryName();
          String road = namedLoc.getThoroughfare();
          add += String.format("\n[%s][%s][%s][%s]", placeName, featureName, road, country);
          int addidx = namedLoc.getMaxAddressLineIndex();
          for (int idx = 0 ; idx <= addidx ; idx++)
          {
           String addLine = namedLoc.getAddressLine(idx);
           add += String.format("\nLine %d: %s", idx, addLine);
          }
         }
        }
/*        String lalg;
        lalg = p.getLatitudeE6()/1E6 + "," + p.getLongitudeE6()/1E6;
        Toast.makeText(getBaseContext(), add, Toast.LENGTH_SHORT).show(); */
       }
       catch (IOException e){
        e.printStackTrace();
       }
       return true;
      }
      else
       return false;
     }

터치시 터치부분의 주소를 텍스트로 띄울려고 하는데 전혀 뜨지를 않네요; 실행하는것에는 전혀 문제가 되지를 않습니다.
다만 주소가 뜨지를 않습니다.