本例子演示如何使用警报
首先建立一个待处理意图
Intent intent = new Intent(AlarmController.this, OneShotAlarm.class); PendingIntent sender = PendingIntent.getBroadcast(AlarmController.this, 0, intent, 0);
public class OneShotAlarm extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { Toast.makeText(context, R.string.one_shot_received, Toast.LENGTH_SHORT).show(); } }注册警报
AlarmManager am = (AlarmManager)getSystemService(ALARM_SERVICE); am.set(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), sender);set函数的第一个参数是警报类型
RTC_WAKEUP 指定时间唤醒设备,并触发待处理的意图
RTC 指定触发待处理的意图,但不会唤醒设备
ELAPSED_REALTIME 设备启动之后经过指定的时间后触发意图,不会唤醒设备。经过的时间包括设备休眠期的所有时间。
ELAPSED_REALTIME_WAKEUP 设备启动之后经过指定的时间后触发意图,唤醒设备。经过的时间包括设备休眠期的所有时间。
反复警报,每隔15s警告一次
AlarmManager am = (AlarmManager)getSystemService(ALARM_SERVICE); am.setRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP, firstTime, 15*1000, sender);firstTime 的取得方法:
long firstTime = SystemClock.elapsedRealtime();
SystemClock中有2个取得时间的方法
uptimeMillis 返回的是系统从启动到当前处于非休眠期的时间
elapsedRealtime 返回的是系统从启动到现在的时间
取消警报的方法。调用cancel方法,参数是启动敬告的意图
AlarmManager am = (AlarmManager)getSystemService(ALARM_SERVICE); am.cancel(sender);
效果如下