Android 开发工具类 17_setAlarm

Alarm 是在应用程序生命周期之外设置的,所以它们十分适合于调度定时更新或者数据查询,从而避免了在后台持续运行 Service。但触发 Alarm 时,就会广播指定的 Pending Intent。

Alarm 类型:

1、RTC_WAKEUP:在指定的时间唤醒设备,并激活 Pending Intent。

2、RTC:在指定的时间点激活 Pending Intent,但是不会唤醒设备。

3、ELAPSED_REALTIME:根据设备启动之后经过的时间激活 Pending Intent,但是不会唤醒设备。经过的时间包含设备休眠的所有时间。

4、ELAPSED_REALTIME_WAKEUP:在设备启动并经过指定的时间之后唤醒设备和激活 Pending Intent。

 1 private void setAlarm() {
 2     /**
 3      * Listing 9-16: Creating a waking Alarm that triggers in 10 seconds
 4      */
 5     // Get a reference to the Alarm Manager
 6     AlarmManager alarmManager =
 7      (AlarmManager)getSystemService(Context.ALARM_SERVICE);
 8
 9     // Set the alarm to wake the device if sleeping.
10     int alarmType = AlarmManager.ELAPSED_REALTIME_WAKEUP;
11
12     // Trigger the device in 10 seconds.
13     long timeOrLengthofWait = 10000;
14
15     // Create a Pending Intent that will broadcast and action
16     String ALARM_ACTION = "ALARM_ACTION";
17     Intent intentToFire = new Intent(ALARM_ACTION);
18     PendingIntent alarmIntent = PendingIntent.getBroadcast(this, 0,
19       intentToFire, 0);
20
21     // Set the alarm
22     alarmManager.set(alarmType, timeOrLengthofWait, alarmIntent);
23
24     /**
25      * Listing 9-17: Canceling an Alarm
26      */
27     alarmManager.cancel(alarmIntent);
28   }
29
30   private void setInexactRepeatingAlarm() {
31     /**
32      * Listing 9-18: Setting an inexact repeating alarm
33      */
34     //Get a reference to the Alarm Manager
35     AlarmManager alarmManager =
36     (AlarmManager)getSystemService(Context.ALARM_SERVICE);
37
38     //Set the alarm to wake the device if sleeping.
39     int alarmType = AlarmManager.ELAPSED_REALTIME_WAKEUP;
40
41     //Schedule the alarm to repeat every half hour.
42     long timeOrLengthofWait = AlarmManager.INTERVAL_HALF_HOUR;
43
44     //Create a Pending Intent that will broadcast and action
45     String ALARM_ACTION = "ALARM_ACTION";
46     Intent intentToFire = new Intent(ALARM_ACTION);
47     PendingIntent alarmIntent = PendingIntent.getBroadcast(this, 0,
48      intentToFire, 0);
49
50     //Wake up the device to fire an alarm in half an hour, and every
51     //half-hour after that.
52     alarmManager.setInexactRepeating(alarmType,
53                               timeOrLengthofWait,
54                               timeOrLengthofWait,
55                               alarmIntent);
56   }
57 }
时间: 2024-10-10 06:37:41

Android 开发工具类 17_setAlarm的相关文章

android开发工具类总结(一)

一.日志工具类 Log.java 1 public class L 2 { 3 private L() 4 { 5 /* 不可被实例化 */ 6 throw new UnsupportedOperationException("Cannot be instantiated!"); 7 } 8 // 是否需要打印bug,可以在application的onCreate函数里面初始化 9 public static boolean isDebug = true; 10 private sta

Android 开发工具类 13_ SaxService

网络 xml 解析方式 1 package com.example.dashu_saxxml; 2 3 import java.io.IOException; 4 import java.io.InputStream; 5 import java.util.HashMap; 6 import java.util.List; 7 8 import javax.xml.parsers.SAXParser; 9 import javax.xml.parsers.SAXParserFactory; 10

Android 开发工具类 35_PatchUtils

增量更新工具类[https://github.com/cundong/SmartAppUpdates] 1 import java.io.File; 2 3 import android.app.Activity; 4 import android.app.ProgressDialog; 5 import android.content.Context; 6 import android.content.Intent; 7 import android.net.Uri; 8 import and

Android开发工具类之DownloadManagerPro

这个工具类就是Android系统下载管理DownloadManager的一个增强类,提供了一些增强方法.或许大家不太了解这个安卓系统自带的DownloadManager这个类,我先做一个简单介绍吧.DownloadManager是系统开放给第三方应用使用的类,包含两个静态内部类DownloadManager.Query和DownloadManager.Request. DownloadManager.Request用来请求一个下载,DownloadManager.Query用来查询下载信息.用d

Android 开发工具类 03_HttpUtils

Http 请求的工具类: 1.异步的 Get 请求: 2.异步的 Post 请求: 3.Get 请求,获得返回数据: 4.向指定 URL 发送 POST方法的请求. 1 import java.io.BufferedReader; 2 import java.io.ByteArrayOutputStream; 3 import java.io.IOException; 4 import java.io.InputStream; 5 import java.io.InputStreamReader

Android 开发工具类 19_NetworkStateReceiver

检测网络状态改变类: 1.注册网络状态广播: 2.检查网络状态: 3.注销网络状态广播: 4.获取当前网络状态,true为网络连接成功,否则网络连接失败: 5.注册网络连接观察者: 6.注销网络连接观察者. 1 import java.util.ArrayList; 2 3 import android.content.BroadcastReceiver; 4 import android.content.Context; 5 import android.content.Intent; 6 i

Android 开发工具类 10_Toast 统一管理类

Toast 统一管理类: 1.短时间显示Toast: 2.长时间显示 Toast: 3.自定义显示 Toast 时间. 1 import android.content.Context; 2 import android.widget.Toast; 3 4 // Toast 统一管理类 5 public class T 6 { 7 8 private T() 9 { 10 /* cannot be instantiated */ 11 throw new UnsupportedOperation

Android 开发工具类 09_SPUtils

SharedPreferences 辅助类: 1.保存在手机里面的文件名: 2.保存数据的方法,我们需要拿到保存数据的具体类型,然后根据类型调用不同的保存方法: 3.得到保存数据的方法,我们根据默认值得到保存的数据的具体类型,然后调用相对于的方法获取值: 4.移除某个 key 值已经对应的值: 5.清除所有数据: 6.查询某个 key 是否已经存在: 7.返回所有的键值对: 8.创建一个解决 SharedPreferencesCompat.apply 方法的一个兼容类: 1 import jav

Android 开发工具类 33_开机自运行

原理:该类派生自 BroadcastReceiver,重载方法 onReceive ,检测接收到的 Intent 是否符合 BOOT_COMPLETED,如果符合,则启动用户Activity. 1 import android.content.BroadcastReceiver; 2 import android.content.Context; 3 import android.content.Intent; 4 5 public class BootBroadcastReceiver ext