在我的应用程序中,我有多个地理围栏,我希望它们具有唯一的待处理意图,具有不同的额外数据。但是发生的事情是,对于我的所有地理围栏,正在触发的待处理意图是为最后一个地理围栏添加的,而不是分配给用户刚刚进入的特定目标的一个。
因此,例如,当我有2个地理围栏时,我会添加额外的字符串" AAA"对待未决的意图,然后添加第二个地理围栏和额外的" BBB" 并输入第一个地理围栏,我会收到" BBB"而不是正确的" AAA" 我究竟做错了什么?这是我添加单个新地理围栏的代码:
public void addGeofencing(final MyObject myObject){
Geofence geofence = (new Geofence.Builder()
.setRequestId(myObject.getId())
.setCircularRegion(
myObject.getLat(),
myObject.getLon(),
RADIUS_IN_METERS
)
.setTransitionTypes(Geofence.GEOFENCE_TRANSITION_ENTER |
Geofence.GEOFENCE_TRANSITION_EXIT)
.setExpirationDuration(Geofence.NEVER_EXPIRE)
.build());
client.addGeofences(getGeofencingRequest(geofence),getGeofencePendingIntent(myObject.getExtraString))
.addOnSuccessListener(new OnSuccessListener<Void>() {
@Override
public void onSuccess(Void aVoid) {
System.out.println("GEOFENCE WORKED");
}
}).addOnFailureListener(new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
System.out.println("GEOFENCE FAILED");
}
});
}
private GeofencingRequest getGeofencingRequest(Geofence geofence) {
GeofencingRequest.Builder builder = new GeofencingRequest.Builder();
builder.setInitialTrigger(GeofencingRequest.INITIAL_TRIGGER_ENTER);
builder.addGeofence(geofence);
return builder.build();
}
private PendingIntent getGeofencePendingIntent(String extraString) {
Intent intent = new Intent(context, GeofenceTransitionsIntentService.class);
intent.putExtra("extra",extraString);
return PendingIntent.getService(context, 0, intent, FLAG_UPDATE_CURRENT);
}
答案 0 :(得分:2)
我发现您使用的是通用函数来构建PendingIntents
和
return PendingIntent.getService(context, 0, intent, FLAG_UPDATE_CURRENT);
为您正在构建的0
指定ID PendingIntent
。
由于您使用的是标记FLAG_UPDATE_CURRENT
,因此您只是覆盖之前构建的PendingIntent
(AAA
)。
额外内容是唯一可以在两个Intents
之间发生变化的内容,但不会将其考虑在内:请参阅Android compares PendingIntents。
回答:为每个requestCode
使用不同的PendingIntent
。