我通过addProximityAlert向系统添加了很多POI。 当我收到警报时,我不知道发生了哪种设置。
传递的唯一Extra是文档中描述的'enter'标志。
我怎么知道?
这里的答案是工作代码:
Intent intent = new Intent(this, PlacesProximityHandlerService.class);
intent.setAction("PlacesProximityHandlerService");
intent.putExtra("lat", objPlace.getLat());
intent.putExtra("lon", objPlace.getLon());
intent.putExtra("error_m", objPlace.getError()+ALERT_RANGE_IN_METERS);
PendingIntent sender=PendingIntent.getService(this, 0, intent, 0);
LocationUtils.addProximity(this, objPlace.getLat(), objPlace.getLon(),objPlace.getError()+ALERT_RANGE_IN_METERS, -1, sender);
答案 0 :(得分:1)
在您Intent
中包含的PendingIntent
上使用自定义操作字符串,例如,您可以区分不同的字符串。