问题 I'm kinda lost here: In my main activity, I register a LocationManager and connect it to a LocationListener to use myLocation.getLatitude() and such. Now I need to use the Location- methods from another class. I can't use those object from another class because I cant intantiate the main activity. I can't use getters to pass the L.Manager or L.Listener around, because those are non- static again. So, in general, how do i access objects that I created in the main activity? Any hints on how to