通过网络位置Android显示GPS

时间:2012-12-16 04:02:36

标签: android

我在我的应用程序中使用来自What is the simplest and most robust way to get the user's current location on Android?的Fedor示例。一切正常,但我需要应用程序显示GPS位置,如果它在所有提供程序都启用时可用。只有在设备上启用独立GPS服务时才会显示GPS,但只要其他位置服务打开,它就会显示网络位置而不是GPS。我需要该应用程序显示GPS位置(如果可用)。即使删除了告诉它的语句使用最新的语句,它仍然显示网络位置(如果可用)。这是我第一次在Android上使用位置服务,所以非常感谢任何帮助。

 import java.util.Timer;
 import java.util.TimerTask;
 import android.content.Context;
 import android.location.Criteria;
 import android.location.Location;
 import android.location.LocationListener;
 import android.location.LocationManager;
 import android.os.Bundle;

public class MyLocation {
Timer timer1;
LocationManager lm;
LocationResult locationResult;
boolean gps_enabled=false;
boolean network_enabled=false;

public boolean getLocation(Context context, LocationResult result)
{
    //I use LocationResult callback class to pass location value from MyLocation to user code.
    locationResult=result;
    if(lm==null)
        lm = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);

    //exceptions will be thrown if provider is not permitted.
    try{gps_enabled=lm.isProviderEnabled(LocationManager.GPS_PROVIDER);}catch(Exception ex){}
    try{network_enabled=lm.isProviderEnabled(LocationManager.NETWORK_PROVIDER);}catch(Exception ex){}

    //don't start listeners if no provider is enabled
    if(!gps_enabled && !network_enabled)
        return false;

    if(gps_enabled)
        lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, locationListenerGps);
    if(network_enabled)
        lm.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, locationListenerNetwork);
    timer1=new Timer();
    timer1.schedule(new GetLastLocation(), 20000);
    return true;
}

LocationListener locationListenerGps = new LocationListener() {
    public void onLocationChanged(Location location) {
        timer1.cancel();
        locationResult.gotLocation(location);
        lm.removeUpdates(this);
        lm.removeUpdates(locationListenerNetwork);
    }
    public void onProviderDisabled(String provider) {}
    public void onProviderEnabled(String provider) {}
    public void onStatusChanged(String provider, int status, Bundle extras) {}
};

LocationListener locationListenerNetwork = new LocationListener() {
    public void onLocationChanged(Location location) {
        timer1.cancel();
        locationResult.gotLocation(location);
        lm.removeUpdates(this);
        lm.removeUpdates(locationListenerGps);
    }
    public void onProviderDisabled(String provider) {}
    public void onProviderEnabled(String provider) {}
    public void onStatusChanged(String provider, int status, Bundle extras) {}
};

class GetLastLocation extends TimerTask {
    @Override
    public void run() {
        lm.removeUpdates(locationListenerGps);
        lm.removeUpdates(locationListenerNetwork);

        Criteria criteria = new Criteria();
        criteria.setAccuracy(Criteria.ACCURACY_FINE);
        criteria.setAltitudeRequired(false);
        criteria.setBearingRequired(false);
        criteria.setCostAllowed(false);
        criteria.setPowerRequirement(Criteria.POWER_HIGH);
        String provider = lm.getBestProvider(criteria, true);

        Location net_loc = null, gps_loc = null;
        if (gps_enabled)
            gps_loc = lm.getLastKnownLocation(provider);
        if (network_enabled)
            net_loc = lm.getLastKnownLocation(provider);

        // if there are both values use GPS
        if (gps_loc != null && net_loc != null) {

            locationResult.gotLocation(gps_loc);

            return;
        }

        if (gps_loc != null) {
            locationResult.gotLocation(gps_loc);
            return;
        }
        if (net_loc != null) {
            locationResult.gotLocation(net_loc);
            return;
        }
        locationResult.gotLocation(null);
    }
}

public static abstract class LocationResult {
    public abstract void gotLocation(Location location);
}

1 个答案:

答案 0 :(得分:0)

使用单一条件criteria.setAccuracy(Criteria.ACCURACY_FINE);可以帮助我正确选择网络/ gps。对于所有其他人,我使用默认值。 可能是您的问题。您可以随时拨打getProviders并自行选择网络和gps。

根据您发布的代码,您不清楚如何知道网络和gps位置之间的差异。您是否记录了从getBestProvider返回的提供商?请注意,以下代码不会执行您认为正在执行的操作 -

if (gps_enabled)
        gps_loc = lm.getLastKnownLocation(provider);
if (network_enabled)
        net_loc = lm.getLastKnownLocation(provider);
当gps_enabled和network_enabled都为真时,gps_loc和net_loc将始终相同,因为“provider”将是相同的(getBestProvider返回的'best')。

我还注意到你正在扩展TimerTask。在课堂上,您可以关闭位置更新。您只需要轮询您的任务或通过LocationListener定期更新。后者是首选方法,但无论哪种方式,您都不需要同时执行这两种操作。

我建议查看Making Your App Location Aware。甚至还有一个关于使用网络和gps并选择具有最佳精度的部分。