So wie der Titel sagt, ich folge dem Code auf der Android-Entwickler-Website gefunden und versucht, die Breite und Länge meines aktuellen Standortes zu erhalten. Ich verwende Android Studio und einen Emulator. Ich habe keine Ahnung, warum mein Code Null liefert, wenn ich getLatitude() und getLongitude() benutze - ich dachte, ich folgte dem Code wie angegeben.Android - LocationServices ist Null beim Versuch, den aktuellen Standort zu erhalten
Danke!
HomePage.java (Was der Klasse benötigt wird):
public void onConnected(@Nullable Bundle bundle) {
if (location == null){
declareLocation();
}
double latitude = location.getLatitude();
double longitude = location.getLongitude();
SharedPreferences sharedPreferences = getSharedPreferences("example.com.musicapptest", Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putLong("latitude", Double.doubleToLongBits(latitude));
editor.putLong("longitude", Double.doubleToLongBits(longitude));
}
private Location declareLocation(){
try{
location = LocationServices.FusedLocationApi.getLastLocation(mGoogleApiClient);
}
catch (SecurityException e){
e.printStackTrace();
}
return location;
}
Mögliche Duplikat [LocationClient getLastLocation() return null] (http://stackoverflow.com/questions/16830047/locationclient-getlastlocation-return-null) –