Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import android.location.LocationListener;
import android.location.LocationManager;
import android.net.Uri;
import android.os.Bundle;
import android.os.IBinder;
import android.util.Log;

Expand Down Expand Up @@ -112,6 +113,21 @@ public void navigationStateChanged(
public void onLocationChanged(Location location) {
mNavigationCarSurface.updateLocationString(getLocationString(location));
}

@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
Log.i(TAG, "In onStatusChanged(" + provider + "," + extras + ")");
}

@Override
public void onProviderEnabled(String provider) {
Log.i(TAG, "In onProviderEnabled(" + provider + ")");
}

@Override
public void onProviderDisabled(String provider) {
Log.i(TAG, "In onProviderDisabled(" + provider + ")");
}
};

// Monitors the state of the connection to the Navigation service.
Expand Down