manche dinge wollen einfach nicht in meinen kopf..
LocationManager lm = (LocationManager) Context.getSystemService(Context.LOCATION_SERVICE);
den rot markierten teil unterstreicht eclipse mit der meldung
"cannot make a static reference to a non-static method getSystemService.."
Wo ist das Problem?!
Meinem Location Manager lm hab ich nicht gesagt, dass er static sein soll.
jetzt hab ich
public Context context;
gemacht.
LocationManager lm = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);
warum kann ich nicht einfach
LocationManager lm = (LocationManager) Context.getSystemService(Context.LOCATION_SERVICE);
machen?