“GeofencingAPI已被弃用”

时间:2018-02-08 13:34:49

标签: android android-geofence

我该怎么替换它?此外,我的目标是针对此Geofence App的Android 7.0。

private void addNewGeofence(GeofencingRequest request) {
    Log.i(TAG, "GEOFENCE: Adding new Geofence.");
    if (checkPermissions()){
        if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
            // TODO: Consider calling
            //    ActivityCompat#requestPermissions
            // here to request the missing permissions, and then overriding
            //   public void onRequestPermissionsResult(int requestCode, String[] permissions,
            //                                          int[] grantResults)
            // to handle the case where the user grants the permission. See the documentation
            // for ActivityCompat#requestPermissions for more details.
            return;
        }
        LocationServices.GeofencingApi.addGeofences(
                googleApiClient, request, createGeofencePendingIntent()).setResultCallback(this);
    }

}

1 个答案:

答案 0 :(得分:3)

您使用的Android版本与已弃用GeofencingApi的使用无关。 GeofencingApi是Google Play服务的一部分,在11.0版中已弃用。

目前,替代GeofencingClient已添加到Google Play服务中。

因此,您无需再设置GoogleApiClient即可访问Geofencing API。只需设置一个Geofencing客户端,然后以与之前通话类似的方式调用它。主要区别在于您不必实现结果回调,您可以添加所需的成功/失败/完成回调。

所以对于你的代码来说......

client = LocationServices.getGeofencingClient;
...
client.addGeofences(request, createGeofencePendingIntent())
                    .addOnSuccessListener(new OnSuccessListener<Void>() {
                        @Override
                        public void onSuccess(Void aVoid) {
                            // your success code
                        }
                    })
                    .addOnFailureListener(new OnFailureListener() {
                        @Override
                        public void onFailure(@NonNull Exception e) {
                            // your fail code;
                        }
                    });

请注意,在调用此代码之前,您仍需要检查权限。

有关更全面的解释,请参阅herehere