zoukankan      html  css  js  c++  java
  • 【起航计划 018】2015 起航计划 Android APIDemo的魔鬼步伐 17 App->Alarm->Alarm Service

    Alarm Service和Alarm Controller 例子非常类似,只是Alarm Service是用来Schedule一个Service,而前面的例子是来Schedule一个Broadcast。

    前面说过PendingIntent ,可以来描述一个Activity ,Broadcast,或是一个Service。本例是Schedule一个Alarm事件来启动一个Service。这通常用于来执行一个较费时的任务。

    关于如果编写一个Service将在后面的有专门的例子来说明,只里不详述。只要知道AlarmService_Service是一个Service就行了。

    下面的代码用来Schedule一个多次Alarm事件来启动AlarmService_Service:

    private PendingIntent mAlarmSender;
     ...
    // 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);
    ...
    // We want the alarm to go off 30 seconds from now.
    long firstTime = SystemClock.elapsedRealtime();
     
    // Schedule the alarm!
    AlarmManager am = (AlarmManager)getSystemService(ALARM_SERVICE);
    am.setRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP,
     firstTime, 30*1000, mAlarmSender);

     取消这个Alarm事件:

    // And cancel the alarm.
    AlarmManager am = (AlarmManager)getSystemService(ALARM_SERVICE);
    am.cancel(mAlarmSender);

    代码和Alaram Controller类似,同样的方法也可以Schedule一个Alarm事件来触发一个Activity。

  • 相关阅读:
    hibernate建表默认为UTF-8编码
    XML和JSON
    chrome 模拟发送请求的方法
    什么时候需要使用缓存?
    eclipse中查找类、方法及变量被引用的地方
    用户内容与商业
    2019第48周日
    ajax与重定向
    ifream
    Windows下找到JVM占用资源高的线程
  • 原文地址:https://www.cnblogs.com/dongdong230/p/4316495.html
Copyright © 2011-2022 走看看