AlarmManager的使用

一、概述

1.1 AlarmManager的作用:在特定的时刻为我们广播一个指定的Intent。简单的说就是我们设定一个时间,然后在该时间到来时,AlarmManager为我们广播一个我们设定的Intent。

1.2 AlarmManager的分类:

android提供了四种类型的闹钟:
❑ ELAPSED_REALTIME
在指定的延时过后,发送广播,但不唤醒设备。

❑ ELAPSED_REALTIME_WAKEUP
在指定的演示后,发送广播,并唤醒设备
延时是要把系统启动的时间SystemClock.elapsedRealtime()算进去的,具体用法看代码。

❑ RTC
在指定的时刻,发送广播,但不唤醒设备

❑ RTC_WAKEUP
在指定的时刻,发送广播,并唤醒设备

 

1.3 AlarmManager提供的方法:

❑ void set(int type, long triggerAtTime, PendingIntent operation)
设置一个闹钟

❑ void setRepeating(int type, long triggerAtTime, long interval, PendingIntent operation)
设置一个会重复的闹钟

❑ void setInexactRepeating(int type, long triggerAtTime, long interval, PendingIntent operation)
设置一个重复闹钟的不精确版本,它相对而言更节能(power-efficient)一些,因为系统可能会将几个差不多的闹钟合并为一个来执行,减少设备的唤醒次数。
内置的几个interval为:
INTERVAL_FIFTEEN_MINUTES
INTERVAL_HALF_HOUR
INTERVAL_HOUR
INTERVAL_HALF_DAY
INTERVAL_DAY
如果你将其设为DAY,那么可能这一天中的所有闹钟都会被合并掉。

❑ void cancel(PendingIntent operation)
取消一个设置的闹钟

❑ void setTimeZone(String timeZone)
设置系统的默认时区。需要android.permission.SET_TIME_ZONE权限

 

二、使用方法

1、获取系统服务ALARM_SERVICE:

         final AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);

2、闹钟一般都是通过发出一个广播来实现的,定义一个PendingIntent发出广播:

	// 实例化Intent
	Intent intent = new Intent();
	// 设置Intent action属性
	intent.setAction(BC_ACTION);
	intent.putExtra("msg", content);
	// 实例化PendingIntent
	final PendingIntent pi = PendingIntent.getBroadcast(getApplicationContext(), 0, intent, 0);

 

PendingIntent:简单的说就是在Intent上在加个指定的动作。Intent的话,我们还需要在执行startActivity、startService或sendBroadcast才能使Intent有用。而PendingIntent的话就是将这个动作包含在内了,如PendingIntent.getBroadcast就包含了sendBroadcast的动作

 

3、调用AlarmManager的set方法开启闹钟:

         am.set(AlarmManager.RTC_WAKEUP, time2, pi);




 

 

 

 

参考资料:

http://yuanzhifei89.iteye.com/blog/1131523

《Android应用开发详解》8.4 章节

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值