我有一个在手机启动后启动的接收器,如下所示:
<receiver android:name=".OnBootReceiver" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
在我运行的接收器中设置这样的警报:
AlarmManager mgr=(AlarmManager)context.getSystemService(Context.ALARM_SERVICE);
Intent i=new Intent(context, LocationPoller.class);
i.putExtra(LocationPoller.EXTRA_INTENT,
new Intent(context, LocationReceiver.class));
i.putExtra(LocationPoller.EXTRA_PROVIDER,
LocationManager.GPS_PROVIDER);
PendingIntent pi=PendingIntent.getBroadcast(context, 0, i, 0);
mgr.setRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP,
SystemClock.elapsedRealtime(),
PERIOD,
pi);
它工作正常,当然,当用户安装应用程序时,除非用户重启手机,否则不会设置警报。
要解决这个问题,我需要从我的 Activity 中检查是否设置了 AlarmManager,如果没有,我需要从 Activity 中设置。
因此,我如何检查是否已经设置了警报管理器。