locationListener = new LocationListener() { @Override public void onLocationChanged(Location location) { latitud = location.getLatitude(); longitud = location.getLongitude(); / /setLatLong(location.getLatitude(),location.getLongitude()); LatLng actual = new LatLng(latitud,longitud); map.clear(); map.addMarker(new MarkerOptions().position(actual).title("Ubicacion Actual")); map.moveCamera(CameraUpdateFactory.newLatLngZoom(actual,15)); } @Override public void onStatusChanged(String provider, int status, Bundle extras) { } @Override public void onProviderEnabled(String provider) { } @Override public void onProviderDisabled (String provider){ } };
el error me da que con el location listener solo me sale
public void onLocationChanged(Location location)
los otros 3 override no me salen y los escribo peor me sale
Method does not override method from its superclass
no se que le pasa