私は次のクラスを持っています
public class GPSManager {
Context MyContext;
boolean GotLocation = false;
Location CurrentLocation;
public GPSManager(Context context){
MyContext = context;
}
LocationManager locationManager = (LocationManager)MyContext.getSystemService(MyContext.LOCATION_SERVICE);
LocationListener locationlistener = new LocationListener() {
public void onLocationChanged(Location location) {
// Called when a new location is found by the network location provider.
GotLocation = true;
CurrentLocation = location;
}
//等
アクティビティから呼び出される以下のように呼び出される
GPSManager myGPS = new GPSManager(this);
しかし、実行すると失敗すると、デバッガーのように(Eclipse ではまだ新しい) ヌル値だと思います。
私が欲しいのは、現在の場所を返すクラスだけです(最後に知っている場所は必要ありません)