博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android学习笔记--AlarmManager
阅读量:5096 次
发布时间:2019-06-13

本文共 2070 字,大约阅读时间需要 6 分钟。

AlarmManager称呼为全局定时器,有的称呼为闹钟。其实它的作用和Timer有点相似。

都有两种相似的用法:

(1)在指定时长后执行某项操作(2)周期性的执行某项操作

AlarmManager 包含的主要方法:

// 取消已经注册的与参数匹配的定时器

void cancel(PendingIntent operation)
//注册一个新的延迟定时器
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)
//设置时区
void setTimeZone(String timeZone)

AlarmManager对象配合Intent使用,可以定时的开启一个Activity,发送一个BroadCast,或者开启一个Service.

android提供了的几种类型的闹钟: 

public static final int ELAPSED_REALTIME

在指定的延时过后,发送广播,但不唤醒设备。// 当系统进入睡眠状态时,这种类型的闹铃不会唤醒系统。直到系统下次被唤醒才传递它,该闹铃所用的时间是相对时间,是从系统启动后开始计时的,包括睡眠时 间,可以通过调用SystemClock.elapsedRealtime()获得。系统值是3 (0x00000003)。
public static final int ELAPSED_REALTIME_WAKEUP
在指定的延时后,发送广播,并唤醒设备 //能唤醒系统,用法同ELAPSED_REALTIME,系统值是2 (0x00000002) 。
public static final int RTC
在指定的时刻,发送广播,但不唤醒设备 //当系统进入睡眠状态时,这种类型的闹铃不会唤醒系统。直到系统下次被唤醒才传递它,该闹铃所用的时间是绝对时间,所用时间是UTC时间,可以通过调用 System.currentTimeMillis()获得。系统值是1 (0x00000001) 。
public static final int RTC_WAKEUP
在指定的时刻,发送广播,并唤醒设备//能唤醒系统,用法同RTC类型,系统值为 0 (0x00000000) 。
Public static final int POWER_OFF_WAKEUP
//能唤醒系统,它是一种关机闹铃,就是说设备在关机状态下也可以唤醒系统,所以我们把它称之为关机闹铃。使用方法同RTC类型,系统值为4(0x00000004)。

 

demo:

AlarmManager mgr = (AlarmManager) context

.getSystemService(Context.ALARM_SERVICE);

Intent i = new Intent(context, MyAlarmService.class);

i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

PendingIntent pi = PendingIntent.getService(context, 0, i, 0);

 

//设置触发时间

GregorianCalendar now = new GregorianCalendar();

GregorianCalendar targetTime = new GregorianCalendar();

targetTime.set(GregorianCalendar.HOUR_OF_DAY, 2);

targetTime.set(GregorianCalendar.MINUTE, 0);

long diff = targetTime.getTimeInMillis() - now.getTimeInMillis();

if (diff < 0) // passerat 2am

diff += AlarmManager.INTERVAL_DAY;

//注册一个重复类型的定时器

mgr.setRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP,
SystemClock.elapsedRealtime() + diff,
AlarmManager.INTERVAL_DAY, pi);

 

 

 

 

 

转载于:https://www.cnblogs.com/yuan1225/p/3806031.html

你可能感兴趣的文章
tmux的简单快捷键
查看>>
springboot笔记04——读取配置文件+使用slf4j日志
查看>>
[Swift]LeetCode653. 两数之和 IV - 输入 BST | Two Sum IV - Input is a BST
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
微信小程序的wxml文件和wxss文件在webstrom的支持
查看>>
SaltStack快速部署及测试
查看>>
[Angular] Architectures for Huge Angular Based Enterprise
查看>>
[Git] set-upstream
查看>>
[AngularJS] Best Practise - Minification and annotation
查看>>
[AngularJS] Lazy Loading modules with ui-router and ocLazyLoad
查看>>
关于移动端rem适配
查看>>
.Net Com口通信编程例子
查看>>
js 编程笔记 【无名函数】
查看>>
Java相对路径/绝对路径总结
查看>>
SQL语句
查看>>
JS - 给数组的原型添加去掉重复元素的distinct方法
查看>>
打印插件
查看>>
vue、rollup、sass、requirejs组成的vueManager
查看>>
MySQL授权用户登录访问指定数据库
查看>>
【转】Linux下的多线程编程
查看>>