コード例 #1
0
  public void registerForLocationUpdates(
      GPSTracker.GPSListener gpsListener, LocationTracker.LocationJSONListener jsonListener) {
    Logf.d(LOG_TAG, "registerForLocationUpdates(%s)", gpsListener);

    mGpsTracker.addListener(gpsListener);
    mLocationTracker.addListener(jsonListener);

    mGpsTracker.invalidateMe(gpsListener);
    mLocationTracker.invalidateMe(jsonListener);
  }
コード例 #2
0
 public void unregisterForLocationUpdates(
     GPSTracker.GPSListener gpsListener, LocationTracker.LocationJSONListener jsonListener) {
   Logf.d(LOG_TAG, "unregisterForLocationUpdates(%s)", gpsListener);
   mGpsTracker.removeListener(gpsListener);
   mLocationTracker.removeListener(jsonListener);
 }