簡體   English   中英

Android onLocationChanged和MainActivity類

[英]Android onLocationChanged and MainActivity class

我有以下代碼:

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.如何在一次之后停止接收位置信息? 只能在MainActivity類中調用函數lm.removeUpdates(listener)。

B.基本相同。 如何在MyLocationListener類和MainActivity類之間進行連接?

抱歉,我是Android和Java開發的新手。 謝謝!

您可以使用以下示例代碼:

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();

您還可以在確定坐標(並可能檢查坐標是否滿足您的需要)之后使用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);
    }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM