こんにちは、近接アラートを使用している小さな 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
{
}
}
どうやってするか?助けが必要。ありがとうございました。