1

私は次のコードを持っています:

public class MyLocationListener implements LocationListener {


@Override
public void onLocationChanged(Location loc) {
    // called when the listener is notified with a location update from the GPS
    Log.d("Latitude", Double.toString(loc.getLatitude()));
    Log.d("Longitude", Double.toString(loc.getLongitude()));
}
@Override
public void onProviderDisabled(String provider) {
   // called when the GPS provider is turned off (user turning off the GPS on the phone)
}
@Override
public void onProviderEnabled(String provider) {
   // called when the GPS provider is turned on (user turning on the GPS on the phone)
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras) {

}

そして私のMainActivityで

            LocationListener locationListener = new MyLocationListener();
        LocationManager lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE);

        lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, locationListener);

ここで、必要なのは、デバイスの現在の位置をMainActivityクラスに一度だけ受け取ることです(後でアプリケーションで使用する高度と経度の変数を取得します)。

A.一度だけ場所の受信を停止するにはどうすればよいですか?関数lm.removeUpdates(listener)は、MainActivityクラスでのみ呼び出すことができます。

B.基本的に同じです。MyLocationListenerクラスとMainActivityクラスを接続するにはどうすればよいですか?

申し訳ありませんが、私はAndroidとJavaの開発の初心者です。ありがとう!

4

2 に答える 2

1

次のサンプル コードを使用できます。

public class LocationGetter {
    private final Context context;
    private Location location = null;
    private final Cordinate gotLocationLock = new Cordinate();
    private final LocationResult locationResult = new LocationResult() {
        @Override
        public void gotLocation(Location location) {
            synchronized (gotLocationLock) {
                LocationGetter.this.location = location;
                gotLocationLock.notifyAll();
                Looper.myLooper().quit();
            }
        }
    };

    public LocationGetter(Context context) {
        if (context == null)
            throw new IllegalArgumentException("context == null");

        this.context = context;
    }

    public  void getLocation(int maxWaitingTime, int updateTimeout) {
        try {
            final int updateTimeoutPar = updateTimeout;
            synchronized (gotLocationLock) {
                new Thread() {
                    public void run() {
                        Looper.prepare();
                        LocationResolver locationResolver = new LocationResolver();
                        locationResolver.prepare();
                        locationResolver.getLocation(context, locationResult, updateTimeoutPar);
                        Looper.loop();
                    }
                }.start();

                gotLocationLock.wait(maxWaitingTime);
            }
        } catch (InterruptedException e1) {
            e1.printStackTrace();
        }
        gteAddress ();
    }


public double getLatitude() {
    return location.getLatitude();
}

public double getLongitude() {
    return location.getLongitude();
}

アクティビティで次を使用します。

_locationGetter=new LocationGetter(context);

_locationGetter.getLocation(200000000, 10000000);

_locationGetter.getLongitude();

_locationGetter.getLatitude();
于 2012-09-16T12:49:13.370 に答える
0

座標を取得した後に LocationManager.removeUpdates を使用することもできます (場合によっては、座標がニーズに十分かどうかを確認します)。

        @Override
    public void onLocationChanged(Location loc) {
        // called when the listener is notified with a location update from the GPS
        Log.d("Latitude", Double.toString(loc.getLatitude()));
        Log.d("Longitude", Double.toString(loc.getLongitude()));
        lm.removeUpdates(this);
    }
于 2012-09-16T13:37:49.060 に答える