0

在过去的 3 个月里,我一直在做 android 编程,但我在这个问题上遇到了困难。

我的任务:我希望我的设备能够获取其当前位置(纬度和经度)并将其传递给另一个我有位图的类。位图是我自己画的地图。那么有人知道将纬度和经度坐标传递给另一个类的简单方法吗?

注意:一旦我得到坐标并将它们传递给另一个类,我就知道如何在我的位图上绘制。我正在使用 eclipse 和 java 顺便说一句。我希望在不使用 phonegap 的情况下做到这一点。

编辑:我使用了以下代码(我在教程中找到了它),当我使用它时,我可以查看位置。问题是我不知道他是如何获得确切位置的。那么任何人都可以向我解释如何使用此代码将位置传递给另一个类吗?

提前谢谢了!

package org.mh00217.SilineSnap;


public class LocationActivity extends MapActivity implements LocationListener { //<1>

      private static final String TAG = "LocationActivity";



      LocationManager locationManager; //<2>
      Geocoder geocoder; //<3>
      TextView locationText;
      MapView map;  
      MapController mapController; //<4>

    @Override
      public void onCreate(Bundle savedInstanceState) {


        super.onCreate(savedInstanceState);
        setContentView(R.layout.location);

        locationText = (TextView)this.findViewById(R.id.lblLocationInfo);
        map = (MapView)this.findViewById(R.id.mapview);
        map.setBuiltInZoomControls(true);

        mapController = map.getController(); //<4>
        mapController.setZoom(16);

        locationManager = (LocationManager)this.getSystemService(LOCATION_SERVICE); //<2>

        geocoder = new Geocoder(this); //<3>

        Location location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER); //<5>
        if (location != null) {
          Log.d(TAG, location.toString());
          this.onLocationChanged(location); //<6>

        }
      }

      @Override
      protected void onResume() {
        super.onResume();
        locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 1000, 10, this); //<7>
      }

      @Override
      protected void onPause() {
        super.onPause();
        locationManager.removeUpdates(this); //<8>
      }

      @Override
      public void onLocationChanged(Location location) { //<9>

        Log.d(TAG, "onLocationChanged with location " + location.toString());
        String text = String.format("Lat:\t %f\nLong:\t %f\nAlt:\t %f\nBearing:\t %f", location.getLatitude(), 
                      location.getLongitude(), location.getAltitude(), location.getBearing());
        this.locationText.setText(text);

        try {
          List<Address> addresses = geocoder.getFromLocation(location.getLatitude(), location.getLongitude(), 10); //<10>
          for (Address address : addresses) {
            this.locationText.append("\n" + address.getAddressLine(0));
          }

          int latitude = (int)(location.getLatitude() * 1000000);
          int longitude = (int)(location.getLongitude() * 1000000);

          GeoPoint point = new GeoPoint(latitude,longitude);
          mapController.animateTo(point); //<11>

        } catch (IOException e) {
          Log.e("LocateMe", "Could not get Geocoder data", e);
        }
      }

    @Override
    protected boolean isRouteDisplayed() {
        // TODO Auto-generated method stub
        return false;
    }

    @Override
    public void onProviderDisabled(String provider) {
        // TODO Auto-generated method stub

    }

    @Override
    public void onProviderEnabled(String provider) {
        // TODO Auto-generated method stub

    }

    @Override
    public void onStatusChanged(String provider, int status, Bundle extras) {
        // TODO Auto-generated method stub

    }


    }
4

1 回答 1

0

从 GPS 接收器,你得到一个Location-object。它实现了Parcelable-interface。

如果要将此对象传递给另一个 Activity,可以将其添加到Bundle

Intent i = new Intent(...);
i.putExtra("Location", location); // The object.
startActivity(i);
于 2013-04-07T11:29:21.647 回答