4

我正在尝试实现一个地理围栏机制,其中监控地理围栏,一旦用户退出当前地理围栏,当前坐标用于创建新的地理围栏,并启动数据库查询以获取一些数据。

我的问题是未决意图永远不会被解雇。

从日志中我可以看到地理围栏正在添加到位置客户端中。但是,在位置更改时不会触发任何未决意图。(我已将围栏半径设置为 2m,并且我已经走了 100 多米)。我声明意图服务的方式有什么问题吗?

这是意图服务类。

public class GeoFenceIntentService extends IntentService{
    private static final String mIntentName = "GeoFenceIntentService";

    public GeoFenceIntentService() {
        super(mIntentName);
    }

    @Override
    protected void onHandleIntent(Intent intent) {
        int transitionType = LocationClient.getGeofenceTransition(intent);
        Log.e(TAG,"Inside fence handler");
        if(transitionType == Geofence.GEOFENCE_TRANSITION_EXIT){
            //Query DB here with current co-ords
            //create new GeoFence
            Location location = LocationHelper.getInstance(mContext).getLastLocation();
            mLat = String.valueOf(location.getLatitude());
            mLong = String.valueOf(location.getLongitude());
            addGeofenceToMonitor(location);
            queryDb();
        }
    }       
}

同样在这里,我将待处理的意图和地理围栏添加到位置客户端

addGeofenceToMonitor(Location location){
    List<Geofence> list = new ArrayList<Geofence>();
    list.add(getNewGeofence(location.getLatitude(), location.getLongitude()));
    PendingIntent pendingIntent = PendingIntent.getService(mContext, 0, 
                                        new Intent(mContext,GeoFenceIntentService.class), PendingIntent.FLAG_UPDATE_CURRENT);

    OnRemoveGeofencesResultListener removeListener = new OnRemoveGeofencesResultListener() {

        @Override
        public void onRemoveGeofencesByRequestIdsResult(int statusCode, String[] requestIDs) {
            //To be used
        }

        @Override
        public void onRemoveGeofencesByPendingIntentResult(int statusCode,PendingIntent pendingIntent) {
            //Not used
        }
    };
    LocationHelper.getInstance(mContext).removeGeoFence(mGeofenceRequestIDs, removeListener);

    OnAddGeofencesResultListener addListener = new OnAddGeofencesResultListener() {

        @Override
        public void onAddGeofencesResult(int statusCode, String[] geofenceRequestIds) {
            if(statusCode != LocationStatusCodes.SUCCESS){
                //handle error cases
            }
            else
                Log.i(TAG, "Successfully added Geofence "+geofenceRequestIds[0]+" for monitoring");
        }
    };
    LocationHelper.getInstance(mContext).addGeoFence(list, pendingIntent, addListener);
}

这是清单文件中的片段

<service
android:name="com.myexample.sample.GeoFenceIntentService"
android:label="@string/app_name"
android:exported="true">
</service> 
4

2 回答 2

0

Android GeoFences 从不启用 GPS(因为它们的 API 很糟糕,而且它们的设备功耗已经失控)。如果您想通过 GPS 进行地理围栏,您必须设置地理围栏,然后不断地单独轮询 GPS。

GPS 轮询的处理程序可以为空,轮询的存在只是为了将准确的信息强制输入其糟糕的位置 API 并进而触发围栏。

于 2014-03-11T17:55:33.180 回答
0

读这个。你检查过你得到的位置估计圈吗?您可以使用模拟位置应用程序来设置位置以及精度圈。您的地理围栏可能太小而无法容纳您的位置圈,这就是未触发事件的原因。

于 2014-02-06T06:22:05.280 回答