`

PendingIntent 和AlarmManager的介绍

阅读更多
转自:http://dev.chinamobile.com/cmdn/bbs/thread-9526-1-1.html

概要:本文通过对OPhone内置闹铃功能的简单介绍,来让开发者朋友们了解基于OPhone平台下客户/服务 模式的编程模型,以及如何使用OPhone系统提供的闹铃唤醒功能。与此同时,本文还对PendingIntent做一些简单的介绍,并通过实例程序来演 示如何通过PendingIntent将闹钟应用程序和系统闹铃服务联系起来。(作者:Yang Ai'in)
一、闹铃功能
        闹钟应用程序作为人们日常常用的基本应用程序之一,其重要性不言而喻。在OPhone系统中闹铃服务功能不仅仅对闹钟应用程序服务,最重要的是可以利用该 闹铃服务功能提供的唤醒能力来做定时器。这样即便应用程序没有运行或者是没有启动的情况下,只要其注册过闹铃,那么该闹铃到时间后,OPhone系统可以 自动将该应用程序启动,这就是所谓的闹铃“唤醒“功能。
        在OPhone系统中,底层系统提供了两种类型的时钟,软时钟与硬时钟,软时钟就是我们常说的Timer,硬时钟就是RTC。系统在正常运行的情况 下,Timer工作提供时间服务和闹铃提醒,而在系统进入睡眠状态后,时间服务和闹铃提醒由RTC来负责。对于上层应用来说,我们并不需要关心是 timer还是RTC为我们提供服务,因为OPhone系统的Framework层把底层细节做了封装并统一提供API。这个API他的名字就叫 AlarmManager。在OPhone系统中有意思的是对应AlarmManage有一个AlarmManagerServie服务程序,该服务程序 才是正真提供闹铃服务的,它主要维护应用程序注册下来的各类闹铃并适时的设置即将触发的闹铃给闹铃设备(在OPhone系统中,linux实现的设备名 为”/dev/alarm”),并且一直监听闹铃设备,一旦有闹铃触发或者是闹铃事件发生,AlarmManagerServie服务程序就会遍历闹铃列 表找到相应的注册闹铃并发出广播。该服务程序在系统启动时被系统服务程序system_service启动并初始化闹铃设备(/dev/alarm)。当 然,在JAVA层的AlarmManagerService与Linux Alarm驱动程序接口之间还有一层封装,那就是JNI。
         AlarmManager将应用与服务分割开来后,使得应用程序开发者不用关心具体的服务,而是直接通过AlarmManager来使用这种服务。这也许 就是客户/服务模式的好处吧。AlarmManager与AlarmManagerServie之间是通过Binder来通信的,他们之间是多对一的关 系。在OPhone系统中,AlarmManage提供了3个接口5种类型的闹铃服务:
        3个API调用接口:
void       cancel(PendingIntent operation)  
    // 取消已经注册的与参数匹配的闹铃  
    void      set(int type, long triggerAtTime, PendingIntent operation)  
    //注册一个新的闹铃  
    void      setRepeating(int type, long triggerAtTime, long interval, PendingIntent operation)  
    //注册一个重复类型的闹铃  
    void      setTimeZone(String timeZone)  
    //设置时区 

5种闹铃类型:
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)。
               在第一小节中,我们已经提到过OPhone系统AlarmManagerService提供了两个设置闹铃的API,他们分别是:
void      set(int type, long triggerAtTime, PendingIntent operation)  
void      setRepeating(int type, long triggerAtTime, long interval, PendingIntent operation) 


        在OPhone 1.5版本中又增加了一个API。
        下面的程序演示了如何设置一个闹铃。

/当设置的闹铃触发时,Ophone系统会广播一个Intent,当然我们需要在创建一个新的闹铃  
    //时注册一个闹铃事件接收对象AlarmReceiver ,该接收对象也可以通过在//AndroidManifest.xml中发布,也可以在代码中动态注册。  




PendingIntent
        在前面的章节中,我们在注册闹铃﹑发送闹铃事件的时候,有过一个重要的参数PendingIntent。这个PendingIntent可以说是 Intent的进一步封装,他既包含了Intent的描述又是Intent行为的执行(这种定义也许不太严格),如果将Intent比作成一个订单的 话,PendingIntent更像是一个下订单的人,因为它既要负责将订单发出去,也要负责订单发送后的处理,比如发送成功后要准备验收订单货物,发送 失败后要重发还是取消订单等操作。开发者可以通过调用getActivity(Context, int, Intent, int), getBroadcast(Context, int, Intent, int), getService(Context, int, Intent, int)函数来得到一个PendingIntent实例。

public static PendingIntent getBroadcast(Context context, int requestCode, Intent intent, int flags)  


        通过该函数获得的PendingIntent将会扮演一个广播的功能,就像调用 Context.sendBroadcast()函数一样。当系统通过它要发送一个intent时要采用广播的形式,并且在该intent中会包含相应的 intent接收对象,当然这个对象我们可以在创建PendingIntent的时候指定,也可以通过ACTION 和CATEGORY等描述让OPhone系统自动找到该行为处理对象。
        实例代码如下:

Intent intent = new Intent(AlarmController.this, OneShotAlarm.class);  
PendingIntent sender = PendingIntent.getBroadcast(AlarmController.this,  
                    0, intent, 0); 

Public static PendingIntent getActivity(Context, int, Intent, int) 


        通过该函数获得的PendingIntent可以直接启动新的activity, 就像调用 Context.startActivity(Intent)一样.不过值得注意的是要想这个新的Activity不再是当前进程存在的Activity 时。我们在intent中必须使用Intent.FLAG_ACTIVITY_NEW_TASK.
         实例代码如下:


// The PendingIntent to launch our activity if the user selects this notification  
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,  
                             new Intent(this, AlarmService.class), 0); 

public static PendingIntent getService(Context context, int requestCode, Intent intent, int flags)  

        通过该函数获得的PengdingIntent可以直接启动新的Service,就像调用Context.startService()一样。
        实例代码如下:

// Create an IntentSender that will launch our service, to be scheduled  
  // with the alarm manager.  
  mAlarmSender = PendingIntent.getService(AlarmService.this,  
              0, new Intent(AlarmService.this, AlarmService_Service.class), 0);
分享到:
评论

相关推荐

    实现可定时响起的闹钟----PendingIntent 与 AlarmManager 的运用

    这就涉及到`PendingIntent`和`AlarmManager`两个关键组件。本文将深入探讨如何利用这两个组件来实现一个可定时响起的闹钟功能。 首先,`AlarmManager`是Android系统中的一个服务,用于安排在未来某一时刻启动或重复...

    AlarmManager、PendingIntent的使用\\附件Home监听十分钟后再次启动应用取消服务

    在Android开发中,`AlarmManager`和`PendingIntent`是两个非常重要的组件,它们用于实现应用程序在特定时间或触发特定事件时执行任务的功能。本文将深入探讨这两个组件的使用,并结合给定的“附件Home监听十分钟后...

    Android 之 PendingIntent用法介绍

    每次创建PendingIntent时,都会分配一个唯一的Token,这个Token是Intent和Flag的组合,用于后续的匹配和操作。 总之,PendingIntent是Android系统中的一个重要工具,它提供了一种安全、灵活的方式来进行跨组件的...

    mooc_android_lesson18_AlarmManager和PendingIntent实现定时提醒功能

    `AlarmManager`和`PendingIntent`是Android系统提供的两个关键组件,用于实现这样的定时提醒功能。下面将详细阐述这两个组件的工作原理及其结合使用的方式。 `AlarmManager`是Android系统中的一个服务,它允许应用...

    Android中PendingIntent的简要介绍.pdf

    - **定时任务**:如使用AlarmManager配合PendingIntent来定时启动Service或BroadcastReceiver。 - **第三方应用集成**:允许其他应用通过PendingIntent调用你的应用功能,例如分享功能。 总之,PendingIntent是...

    Android AlarmManager实现多个定时重复提醒

    `AlarmManager`通过向系统注册闹钟事件,当达到设定的时间点时,会触发一个`PendingIntent`,这个`PendingIntent`通常会启动一个广播接收器(BroadcastReceiver)来处理相应的任务,比如显示通知、更新UI或者执行...

    android安卓闹铃服务AlarmManager的使用

    ### 一、AlarmManager介绍 `AlarmManager`位于`android.app`包下,它提供了多种调度策略,例如精确到毫秒的计时器,以及根据电池状态和系统负载进行优化的定时器。这些特性使得`AlarmManager`成为Android中处理定时...

    AlarmManager

    【AlarmManager】是Android系统中的一个关键组件,用于在指定的时间或者间隔执行特定的任务,它在后台...通过深入理解`AlarmManager`的工作机制和使用方法,开发者可以更有效地利用这一特性来设计和实现各种定时任务。

    使用AlarmManager启动广播、服务、页面(Android定时器)

    一、AlarmManager介绍 `AlarmManager`是Android系统提供的一个接口,可以设置一次性或周期性的定时任务。它的工作原理是通过向系统注册闹钟事件,当达到设定的时间点时,由系统触发相应的回调处理。这种机制使得...

    Android AlarmManager的使用

    `AlarmManager`介绍 `AlarmManager`是Android系统服务,它提供了调度任务的能力,可以在指定的绝对时间或相对时间触发一个Intent。这通常用于执行一次性任务或周期性的后台工作。`AlarmManager`的工作原理是将你的...

    全局定时器 AlarmManager

    alarmManager.set(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), pendingIntent); ``` 4. **选择合适的触发类型**:AlarmManager提供了多种触发类型,如`ELAPSED_REALTIME`(基于系统启动时间)、`RTC`...

    AlarmManager 闹铃(支持重启)

    `AlarmManager`是Android中强大的定时任务管理工具,通过结合`PendingIntent`和`BroadcastReceiver`,我们可以实现重启后依然生效的多闹钟功能。但务必注意权限管理和电池效率,以提供良好的用户体验。在实际开发中...

    android AlarmManager实现任意时间间隔提醒

    `AlarmManager` 提供了多种触发警报的方式,包括精确到毫秒的`RTC`(Real Time Clock)和与系统启动相关的`ELAPSED_REALTIME`。在这个案例中,我们应使用`RTC`类型,因为它基于绝对时间,即使设备在设定的时间点处于...

    Androd AlarmManager小闹钟源代码

    需要注意的是,从Android 6.0(API level 23)开始,系统对后台服务的限制更加严格,因此在设置`AlarmManager`时可能需要考虑动态权限请求和Doze模式的影响。 总的来说,理解并熟练运用`AlarmManager`对于Android...

    alarmManager:应用程序

    本地通知非常适合具有基于时间的行为的应用程序,例如日历和待办事项列表应用程序。 在 iOS 允许的有限时间内在后台运行的应用程序也可能会发现本地通知很有用。 例如,依赖服务器获取消息或数据的应用程序可以在...

    Android中pendingIntent的深入理解

    1. **创建PendingIntent**: 应用通过Intent和Flags参数创建PendingIntent实例。 2. **传递给外部组件**: 将PendingIntent传递给其他应用或系统服务,如NotificationManager。 3. **外部组件请求执行**: 当外部组件...

    Android之AlarmManager(转)

    alarmManager.set(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), pendingIntent); ``` 这里的`AlarmReceiver`是自定义的`BroadcastReceiver`,用来接收并处理`AlarmManager`触发的广播。 `AlarmManager`...

    AlarmManager + Broadcast 循环启动任务

    在Android开发中,`AlarmManager`和`BroadcastReceiver`是两个关键组件,它们协同工作可以实现定时任务的循环启动。让我们深入探讨这两个组件以及如何在实际应用中结合使用。 `AlarmManager`是Android系统服务,它...

    Android后台运行的定时器的Demo ,AlarmManager与Service

    本文将深入探讨如何使用`AlarmManager`和`Service`来实现后台的定时任务。 首先,`Service`是Android系统的一个关键组件,它允许应用程序在后台运行代码,即使用户已经离开了应用界面。`Service`主要用于执行长时间...

    Android AlarmManager Demo

    在不同的Android版本中,`AlarmManager` 的行为可能会有所不同,尤其是在Android 6.0(API级别23)之后引入的Doze模式和App Standby模式,这可能导致定时任务的执行不准确。因此,理解和正确使用`AlarmManager` 是...

Global site tag (gtag.js) - Google Analytics