广播接收器onReceive()被多次调用

时间:2011-09-20 01:23:18

标签: android eclipse broadcastreceiver

我有一个boot_completed接收器,它会在启动时得到通知。

    <receiver android:name=".BootCompletedReceiver">  
        <intent-filter>  
            <action android:name="android.intent.action.BOOT_COMPLETED" />  
        </intent-filter>  
    </receiver>

但似乎多次被召唤。我启动一个计时器,然后是一个服务,它导致多个计时器,然后服务重置并再次运行。

像这样创建计时器。这不是重复计时器,是吗?:

     private void setAlarm(Context context, long interval) {
        try {
            AlarmManager alarms = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
            Intent intent = new Intent(RespondAlarmReceiver.ACTION_RESPOND_SMS);
            intent.putExtra("isChecking", true);
            PendingIntent alarmIntent = PendingIntent.getBroadcast(context, 0, intent, 0);

            int alarmType = AlarmManager.ELAPSED_REALTIME_WAKEUP;
            long triggerAtTime = SystemClock.elapsedRealtime() + interval; //interval is 60,000
            alarms.set(alarmType, triggerAtTime, alarmIntent);
        }
        catch (Exception e) {
            Log.e(DEBUG_TAG, "Unable to set alarm");
        }

作为旁注,如果有人知道如何将Eclipse调试器连接到启动广播接收器或正在运行的服务,那将是非常棒的。

1 个答案:

答案 0 :(得分:4)

奇怪的是,你会有多个计时器启动。尝试传递 PendingIntent.FLAG_ONE_SHOT 作为 PendingIntent.getBroadcast

内的最后一个参数