您好,登錄后才能下訂單哦!
不懂Android鬧鐘機制如何實現定時任務功能??其實想解決這個問題也不難,下面讓小編帶著大家一起學習怎么去解決,希望大家閱讀完這篇文章后大所收獲。
Android的鬧鐘實現機制, 需要調用AlarmManager.set()將鬧鈴時間記錄到系統中,當鬧鈴時間到后,系統會給應用程序發送廣播,我們只需要去注冊廣播接收器就可以了。
本文分三部分講解如何實現鬧鐘:
目錄:
1. 設置鬧鈴時間;
2. 接收鬧鈴事件廣播;
3. 重開機后重新計算并設置鬧鈴時間;
1. 設置鬧鈴時間(毫秒)
private void setAlarmTime(Context context, long triggerAtMillis) { AlarmManager am = (AlarmManager)context.getSystemService(Context.ALARM_SERVICE); Intent intent = new Intent("android.alarm.demo.action"); PendingIntent sender = PendingIntent.getBroadcast( context, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT); //鬧鈴間隔, 這里設為1分鐘鬧一次,在第2步我們將每隔1分鐘收到一次廣播 //int interval = 60 * 1000; //am.setRepeating(AlarmManager.RTC_WAKEUP, timeInMillis, interval, sender); am.set(AlarmManager.RTC_WAKEUP, triggerAtMillis, sender); }
第二個參數它大致分為兩種類型 一種是相對時間 一種是絕對時間。
所以,根據使用的類型不同 triggerAtTime設置也有所不同。
如果使用ELAPSED_REALTIME_WAKEUP類型 應該調用SystemClock.elapsedRealtime()獲取相對時間在加上你設定的延遲時間。
2. 接收鬧鈴事件廣播
public class AlarmReceiver extends BroadcastReceiver { public void onReceive(Context context, Intent intent) { if ("android.alarm.demo.action".equals(intent.getAction())) { // 第1步中設置的鬧鈴時間到,這里可以彈出鬧鈴提示并播放響鈴 Toast.makeText(context, "hello alarm", Toast.LENGTH_LONG).show(); System.out.println("hello alarm"); // 可以繼續設置下一次鬧鈴時間; return; } } }
當然,Receiver是需要在Manifest.xml中注冊的:
<receiver android:name="AlarmReceiver"> <intent-filter> <action android:name="android.alarm.demo.action" /> </intent-filter> </receiver>
3. 重開機后重新計算并設置鬧鈴時間
當然要有一個BootReceiver:
public class BootReceiver extends BroadcastReceiver { public void onReceive(Context context, Intent intent) { String action = intent.getAction(); if (action.equals(Intent.ACTION_BOOT_COMPLETED)) { //重新計算鬧鈴時間,并調第一步的方法設置鬧鈴時間及鬧鈴間隔時間 } } }
當然,也需要注冊:
<receiver android:name="BootReceiver"> <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED" /> </intent-filter> </receiver>
我在設置時鐘的時候遇到一點問題
我開始的代碼是這樣寫的
alarmManager.set(AlarmManager.RTC_WAKEUP, (5*1000), sender);
我的本意是設定五秒后啟動鬧鐘 但是每次都是我設置完鬧鐘之后立馬就啟動了。
后來我發現問題出在第二個參數上 我對他的理解是錯誤的
我之前以為它是“延遲”時間,而實際它是“啟動”時間。
要理解這個參數還要看type這個參數
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) 。
它大致分為兩種類型 一種是相對時間 一種是絕對時間。
所以,根據使用的類型不同 triggerAtTime設置也有所不同。
如果使用ELAPSED_REALTIME_WAKEUP類型 應該調用SystemClock.elapsedRealtime()獲取相對時間在加上你設定的延遲時間。
alarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, SystemClock.elapsedRealtime()+5000, sender);
如果使用RTC_WAKEUP類型 應該調用System.currentTimeMillis()獲取從1970.1.1號以來的時間在加上你設定的延遲時間
alarmManager.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis()+5000, sender);
setRepeating方法有4個參數,這些參數的含義如下:
type:表示警報類型,一般可以取的值是AlarmManager.RTC和AlarmManager.RTC_WAKEUP。如果將type參數值設為AlarmManager.RTC,表示是一個正常的定時器,如果將type參數值設為AlarmManager.RTC_WAKEUP,除了有定時器的功能外,還會發出警報聲(例如,響鈴、震動)。
triggerAtTime:第1次運行時要等待的時間,也就是執行延遲時間,單位是毫秒。
interval:表示執行的時間間隔,單位是毫秒。
operation:一個PendingIntent對象,表示到時間后要執行的操作。PendingIntent與Intent類似,可以封裝Activity、BroadcastReceiver和Service。但與Intent不同的是,PendingIntent可以脫離應用程序而存在。
感謝你能夠認真閱讀完這篇文章,希望小編分享Android鬧鐘機制如何實現定時任務功能?內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。