編輯:關於Android編程
本文實例講述了Android鬧鈴服務AlarmManager用法。分享給大家供大家參考,具體如下:
對應AlarmManage有一個AlarmManagerServie服務程 序,該服務程序才是正真提供鬧鈴服務的,它主要維護應用程序注冊下來的各類鬧鈴並適時的設置即將觸發的鬧鈴給鬧鈴設備(在系統中,linux實現的設備名 為"/dev/alarm"),並且一直監聽鬧鈴設備,一旦有鬧鈴觸發或者是鬧鈴事件發生,AlarmManagerServie服務程序就會遍歷鬧鈴列 表找到相應的注冊鬧鈴並發出廣播。該服務程序在系統啟動時被系統服務程序system_service啟動並初始化鬧鈴設備(/dev/alarm)。當 然,在JAVA層的AlarmManagerService與Linux Alarm驅動程序接口之間還有一層封裝,那就是JNI。
AlarmManager將應用與服務分割開來後,使得應用程序開發者不用 關心具體的服務,而是直接通過AlarmManager來使用這種服務。這也許就是客戶/服務模式的好處吧。AlarmManager與 AlarmManagerServie之間是通過Binder來通信的,他們之間是多對一的關系。
在android系統中,AlarmManage提供了3個接口5種類型的鬧鈴服務。
3個接口:
// 取消已經注冊的與參數匹配的鬧鈴 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)
Java代碼:
// 取消已經注冊的與參數匹配的鬧鈴 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)。
Java代碼 :
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)。
注意一個重要的參數PendingIntent。這個PendingIntent可以說是 Intent的進一步封裝,他既包含了Intent的描述又是Intent行為的執行(這種定義也許不太嚴格),如果將Intent比作成一個訂單的 話,PendingIntent更像是一個下訂單的人,因為它既要負責將訂單發出去,也要負責訂單發送後的處理,比如發送成功後要准備驗收訂單貨物,發送 失敗後要重發還是取消訂單等操作。開發者可以通過調用
getActivity(Context, int, Intent, int)
getBroadcast(Context, int, Intent, int)
getService(Context, int, Intent, int)
三種不同方式來得到一個PendingIntent實例。
getBroadcast——通過該函數獲得的PendingIntent將會 扮演一個廣播的功能,就像調用 Context.sendBroadcast()函數一樣。當系統通過它要發送一個intent時要采用廣播的形式,並且在該intent中會包含相應的 intent接收對象,當然這個對象我們可以在創建PendingIntent的時候指定,也可以通過ACTION 和CATEGORY等描述讓系統自動找到該行為處理對象。
Intent intent = new Intent(AlarmController. this , OneShotAlarm. class ); PendingIntent sender = PendingIntent.getBroadcast(AlarmController.this , 0 , intent, 0 );
Java代碼:
Intent intent = new Intent(AlarmController.this, OneShotAlarm.class); PendingIntent sender = PendingIntent.getBroadcast(AlarmController.this, 0, intent, 0);
getActivity——通過該函數獲得的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 );
Java代碼:
// The PendingIntent to launch our activity if the user selects this notification PendingIntent contentIntent = PendingIntent.getActivity(this, 0, new Intent(this, AlarmService.class), 0);
getService——通過該函數獲得的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 );
更多關於Android相關內容感興趣的讀者可查看本站專題:《Android開發入門與進階教程》、《Android調試技巧與常見問題解決方法匯總》、《Android多媒體操作技巧匯總(音頻,視頻,錄音等)》、《Android基本組件用法總結》、《Android視圖View技巧總結》、《Android布局layout技巧總結》及《Android控件用法總結》
希望本文所述對大家Android程序設計有所幫助。
本文實例講述了Android實現手機壁紙改變的方法。分享給大家供大家參考。具體如下:main.xml布局文件:<?xml version=1.0 encod
2.7導航欄及菜單2.7.1 ActionBarActionBar是Android3.0(API 11)開始增加的新特性,ActionBar出現在活動窗口的頂部,可以顯示
雖然NFC並非什麼新技術,但它至今仍僅是中高端手機的專利。令人遺憾的是,很多用戶對NFC的態度卻是“永不錄用”,一方面是擔心它的高耗
本文以案例形式分析了Android中TelephonyManager類的用法。分享給大家供大家參考。具體如下:目錄結構:main.xml布局文件:<?xml
Working with System PermissionsTo pr