Si encuentras algún error con tu código o proyecto, recuerda probar siempre en un ambiente de testing antes aplicar el código al trabajo final.
Ejemplo: cómo obtener la latitud y longitud exacta de Android Studio
@SuppressLint("MissingPermission")
private void getLastLocation()if(checkPermissions())if(isLocationEnabled())
mFusedLocationClient.getLastLocation().addOnCompleteListener(
new OnCompleteListener<Location>()
@Override
public void onComplete(@NonNull Task<Location> task)
Location location = task.getResult();if(location == null)
requestNewLocationData();else
latTextView.setText(location.getLatitude()+"");
lonTextView.setText(location.getLongitude()+""););else
Toast.makeText(this, "Turn on location", Toast.LENGTH_LONG).show();
Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
startActivity(intent);else
requestPermissions();
Calificaciones y reseñas
Si para ti ha resultado útil nuestro post, sería de mucha ayuda si lo compartes con más desarrolladores de esta forma contrubuyes a extender esta información.
¡Haz clic para puntuar esta entrada!
(Votos: 1 Promedio: 3)