在IntentService中实现的Android LocationLister从不执行OnLocationChange



我编写了一个实现LocationListener接口的IntentService。该服务应在首次调用 OnLocationChanged() 方法时发送消息。但是OnLocationChanged()永远不会被调用。这是我的代码:

public class MyIntentService extends IntentService implements LocationListener {
    private int result = Activity.RESULT_CANCELED;
    protected Messenger mMessenger;
    protected LocationManager mLocationManager = null;
    public MyIntentService() {
        super("LocationService");
    }
    @Override
    protected void onHandleIntent(Intent intent) {
        Log.i(TAG, "Got starting intent: " + intent.toString());
        Bundle extras = intent.getExtras();
        if (extras != null) {
            Messenger = (Messenger) extras.get("MESSENGER");
            if(mLocationManager == null) {  
            mLocationManager =  (LocationManager) MyIntentService.this
                                    .getSystemService(Context.LOCATION_SERVICE);
            }
            String provider = LocationManager.GPS_PROVIDER;
            boolean gpsIsEnabled = mLocationManager.isProviderEnabled(provider);
            if(gpsIsEnabled) {
                Context con = MyIntentService.this;
                mLocationManager.requestLocationUpdates(provider, 0, 0,
                                                        MyIntentService.this);
            } 
            else {
                Log.i(TAG, "NO GPS!");
            }
        }
    @Override
    public void onLocationChanged(Location location) {
        Log.i(TAG, "Got Location");
        Log.i(TAG, "Got Messenger: " + mMessenger.toString() 
                    + "nand Location Manager: " + mLocationManager.toString());
        if(mMessenger != null && mLocationManager != null){
            result = Activity.RESULT_OK;
            Message msg = Message.obtain();
            msg.arg1 = result;
            msg.obj = location;
            mLocationManager.removeUpdates(MyIntentService.this);
            try { mMessenger.send(msg); } 
            catch (RemoteException e) {
                Log.i(TAG, "Exception caught : " + e.getMessage());
            }
        }
    }
    @Override
    public void onProviderDisabled(String provider) {}
    @Override
    public void onProviderEnabled(String provider) {}
    @Override
    public void onStatusChanged(String provider, int status, Bundle extras) {}
}

有人有想法吗?

我编写了一个实现LocationListener接口的IntentService。

这不是一个好主意。IntentService不应该做任何超过onHandleIntent()方法的事情。

该服务应在首次调用 OnLocationChanged() 方法时发送消息。但是OnLocationChanged()永远不会被调用。

这并不奇怪,因为根据您的实现,服务将在创建后一毫秒左右被销毁。

如果您的目标是始终拥有一个合理的当前位置,请尝试小毛茸茸的位置库。或者,考虑一下我的LocationPoller.

最新更新