2012-12-16 76 views
0

我在应用程序中使用Fedor的What is the simplest and most robust way to get the user's current location on Android?示例。一切正常,但我需要应用程序来显示GPS位置,如果它是可用的,而所有提供者都启用。当设备上启用了独立的GPS服务时,它将显示GPS,但只要打开其他位置服务,它就会显示网络位置,而不是GPS。如果可用,我需要该应用程序才能显示GPS位置。即使在删除说明它使用最新的语句之后,它仍然显示网络位置(如果可用)。这是我第一次在Android上使用定位服务,因此非常感谢所有帮助。通过网络位置显示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); 
} 

回答

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_loc和net_loc将始终是相同的当两个gps_enabled和network_enabled是真实的,因为“供应商”将是相同的(在'最好'一个由getBestProvider返回)。

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

我建议你看看Making Your App Location Aware。甚至有一部分同时使用网络和gps并选择最准确的一个。

+0

我编辑了我的原始文章,以显示我用于获取位置的完整代码,如果它有帮助。我担心我发布的代码没有做到我认为的那样。我也在想计时器。我注意到它可以在ICS上正常工作,但是当它安装在Jelly Bean设备上时,它会导致应用程序强制关闭。 – Jasonwilliams10