嗨,我正在开发小型 android 应用程序,我在其中使用接近警报。所以一切正常。现在,一旦触发输入事件,我想做什么,我想删除该警报。怎么做?我可以在广播接收器或其他地方做吗?我的代码看起来像。
// in abc class
PendingIntent proximityIntent = PendingIntent.getBroadcast(
context, 0, intent,
PendingIntent.FLAG_CANCEL_CURRENT);
locationManager.addProximityAlert(
latitude,
longitude,
POINT_RADIUS,
PROX_ALERT_EXPIRATION,
proximityIntent );
// this is broadcast receiver
public void onReceive(Context context, Intent intent) {
String key = LocationManager.KEY_PROXIMITY_ENTERING;
Boolean entering = intent.getBooleanExtra(key, false);
if (entering)
{
// here I want to stop this alert... ANy solution how to stop this
}
else
{
}
}
怎么做?需要帮忙。谢谢你。