Ich habe mein Problem auf ein paar Codezeilen eingegrenzt
lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
Location location = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 1000L, 5.0f, this);
lat = location.getLatitude();
lng = location.getLongitude();
//lat = new Double(40.431682);
//lng = new Double(-74.2021819);
pLocation = new GeoPoint((int)(lat * 1000000), (int)(lng * 1000000));
Mein onLocationChanged, falls Sie sich das gefragt haben
public void onLocationChanged(Location location) {
if (location != null) {
lat = location.getLatitude();
lng = location.getLongitude();
pLocation = new GeoPoint((int)(lat * 1000000), (int)(lng * 1000000));
}
}
Meine Anwendung stürzt ab, wenn ich versuche, die LastKnownLocation
Es funktioniert aber gut, wenn ich einen Standort manuell eingebe.
Ich habe derzeit keine Ahnung, was los ist.