0

MyLocationOverlayが提供する経度と緯度から現在の郵便番号を取得し、これをアクティビティのEditViewに設定しようとしています。

MyLocationOverlayから経度と緯度を取得しようとすると、アクティビティがクラッシュします。

このコードの何が問題になっていますか?

よろしく、フロート

LogCat出力:http ://codepaste.net/vs6itk59 行目は次の行です。

 double currentLatitude = myLocationOverlay.getMyLocation().getLatitudeE6(); 

これが私のコードです:

protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.partner_suche);

    final EditText tView = (EditText) findViewById(R.id.editTextPLZ);
    final MapView mView = (MapView) findViewById(R.id.mapview);
    mView.getController().setZoom(14);

    List<Overlay> mapOverlays = mView.getOverlays();

    myLocationOverlay = new MyCustomLocationOverlay(this, mView);
    mapOverlays.add(myLocationOverlay);
    myLocationOverlay.enableMyLocation();
    myLocationOverlay.enableCompass();
    myLocationOverlay.runOnFirstFix(new Runnable() {
        public void run() {
            mView.getController().animateTo(myLocationOverlay.getMyLocation());
        }
    });

    Geocoder gc = new Geocoder(this, Locale.getDefault());
    double currentLatitude = myLocationOverlay.getMyLocation().getLatitudeE6();
    double currentLongitute = myLocationOverlay.getMyLocation().getLongitudeE6();

    try 
    {
        List<Address> addresses = gc.getFromLocation(currentLatitude, currentLongitute, 1);
        if (addresses.size() > 0) 
        {
            tView.setText(addresses.get(0).getLocality());
        }
    } catch (IOException e) 
    {

    }
}

編集:現在の場所を取得するためにLocationListenerを作成しました。gc.getFromLocation(latitude、longitude、1);を実行しようとすると、パーツがクラッシュします。例外が読めませんか?:/

LocationManager locationManager;
    String context = Context.LOCATION_SERVICE;
    locationManager = (LocationManager)getSystemService(context);
    String provider = LocationManager.GPS_PROVIDER;

    LocationListener locationListener = new LocationListener() {
        public void onLocationChanged(Location location) {
            updateWithNewLocation(location);
            } 

        public void onProviderDisabled(String provider){
            updateWithNewLocation(null);
            }
        public void onProviderEnabled(String provider){ }
        public void onStatusChanged(String provider, int status,Bundle extras){ }
        };

    locationManager.requestLocationUpdates(provider, 0, 0, locationListener);

private void updateWithNewLocation(Location location) {
    final EditText tView = (EditText) findViewById(R.id.editTextPLZ);
    double latitude = location.getLatitude();
    double longitude = location.getLongitude();

    Geocoder gc = new Geocoder(this, Locale.getDefault());
    if (location != null) {
        try 
        {
            List<Address> addresses = gc.getFromLocation(latitude, longitude, 1);
            if (addresses.size() > 0) 
            {
                Address address = addresses.get(0);
                for (int i = 0; i < address.getMaxAddressLineIndex(); i++){
                    tView.setText(address.getPostalCode());
                }
            }
        } catch (Exception e) 
        {

        }
    }

}
4

2 に答える 2

0

エミュレーターAPIレベル8または9を使用していて、例外が発生した場合:

java.io.IOException:サービスが利用できません

その後、それは既知のバグです。利用できないサービスを参照してください

ただし、実際のデバイスとエミュレーターレベル7では問題なく動作します。(おそらく、住所がnullであることにもトラップを設定する必要がありますが、これではジオコーダーは機能しません!)

于 2011-05-03T12:34:39.733 に答える
0

おそらく、返送元の場所

myLocationOverlay.getMyLocation()

また

Location location = locationManager.getLastKnownLocation(provider);

無効である。アプリケーションがまだ場所の修正を受け取っておらず、以前に保存された場所がないことが原因である可能性があります。

ジオコーディングを行うコードブロックを、修正を受け取った後に実行されるランナブルに移動してみてください。このような:

myLocationOverlay.runOnFirstFix(new Runnable() {
    public void run() {
        Location loc = myLocationOverlay.getMyLocation();
        if (loc != null) {
            mView.getController().animateTo(loc);
            Geocoder gc = new Geocoder(this, Locale.getDefault());
            double currentLatitude = loc.getLatitudeE6();
            double currentLongitute = loc.getLongitudeE6();

            try 
            {
                List<Address> addresses = gc.getFromLocation(currentLatitude, currentLongitute, 1);
                if (addresses.size() > 0) 
                {
                    tView.setText(addresses.get(0).getLocality());
                }
            } catch (IOException e) 
            {

            }
        }
    }
});
于 2011-05-03T14:24:55.470 に答える