我想在我的车库门应用程序中使用Android的Proximity Alert。我有一个按钮设置,当按下时添加接近警报并开始跟踪位置。我希望它无限期地跟踪,直到我进入或离开邻近区域。如果进入它将打开车库门,如果退出它将关闭车库门,之后我删除接近警报和GPS关闭。我让它接近完美。
问题是,当我在车道上按下按钮,因此在附近时,意图总是立即激活,并将额外的KEY_PROXIMITY_ENTERING设置为“进入”。如果我在距离附近开始跟踪,它会按预期运行,只有在我进入邻近区域时才会触发。如何以同样的方式开始工作时,如何退出接近状态?在此先感谢,这是我的代码。
在我的活动中:
float radius = 100f;
double lat = 37.422;
double lon = -122.084;
// Expiration is 10 Minutes
long expiration = 600000;
LocationManager locManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
Intent intent = new Intent(proximityIntentAction);
PendingIntent pendingIntent = PendingIntent.getBroadcast(getApplicationContext(), 1, intent, PendingIntent.FLAG_CANCEL_CURRENT);
locManager.addProximityAlert(lat, lon, radius, expiration, pendingIntent);
这是我的BroadcastReceiver:
public void onReceive(Context context, Intent intent)
{
Log.v("SomeTag","Proximity Alert Intent Received");
String direction = LocationManager.KEY_PROXIMITY_ENTERING;
CharSequence text = direction;
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, "going: "+text, duration);
toast.show();
LocationManager locManager = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);
PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 1, intent, PendingIntent.FLAG_NO_CREATE);
locManager.removeProximityAlert(pendingIntent);
}
答案 0 :(得分:2)
为什么不在按钮发射时加上定时器/延迟?例如,为什么在应用程序开始检测之前,不要让自己有一段固定的时间离开附近?我认为许多家庭报警以相同的方式工作。或者,另一个选项可能是检测并忽略您第一次进入邻近区域并验证任何后续重新进入该距离(即您的车库)。你觉得怎么样?