初識Notification

通知(Notification)是 Android 系統中比較有特點的一個功能,當某個應用程序但願向 用戶發出一些提示信息,而該應用程序又不在前臺運行時,就能夠藉助通知來實現。發出一 條通知後,手機最上方的狀態欄中會顯示一個通知的圖標,下拉狀態欄後能夠看到通知的詳 細內容。
 
通知的基本用法
 
既能夠在活動裏建立,也能夠在廣播接收器裏建立相比於廣播接收器和服務,在活動裏建立通知的場景仍是比較少的 由於通常只有當程序進入到後臺的時候咱們才須要使用通知。論是在哪裏建立通知,總體的步驟都是相同的。
  • 首先須要一個 NotificationManager 來對通知進行管理,能夠調用 Context 的getSystemService()方法獲取到。getSystemService()方法接收一個字符串參數用於肯定獲取系統的哪一個服務,這裏咱們傳入 Context.NOTIFICATION_SERVICE 便可。所以,獲取NotificationManager 的實例就能夠寫成:
                    NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
  • 接下來須要建立一個 Notification 對象,這個對象用於存儲通知所需的各類信息,咱們可使用它的有參構造函數來進行建立。Notification 的有參構造函數接收三個參數,第一個參數用於指定通知的圖標,好比項目的 res/drawable 目錄下有一張 icon.png 圖片,那麼這裏就能夠傳入 R.drawable.icon。第二個參數用於指定通知的 ticker 內容,當通知剛被建立的時候,它會在系統的狀態欄一閃而過,屬於一種瞬時的提示信息。第三個參數用於指定通知被建立的時間,以毫秒爲單位,當下拉系統狀態欄時,這裏指定的時間會顯示在相應的通知上。所以,建立一個 Notification 對象就能夠寫成:    
                    Notification notification = new Notification(R.drawable.icon, "This is ticker text", System.currentTimeMillis());
  • 建立好了 Notification 對象後,咱們還須要對通知的佈局進行設定,這裏只須要調用Notification 的 setLatestEventInfo()方法就能夠給通知設置一個標準的佈局。這個方法接收四個參數,第一個參數是 Context,這個沒什麼好解釋的。第二個參數用於指定通知的標題內容,下拉系統狀態欄就能夠看到這部份內容。第三個參數用於指定通知的正文內容,一樣下拉系統狀態欄就能夠看到這部份內容。第四個參數咱們暫時還用不到,能夠先傳入 null。因此,對通知的佈局進行設定就能夠寫成:
                    notification.setLatestEventInfo(context, "This is content title", "This is content text", null);
  • 以上工做都完成以後,只須要調用 NotificationManager 的 notify()方法就可讓通知顯示出來了notify()方法接收兩個參數,第一個參數是 id,要保證爲每一個通知所指定的 id 都是不一樣的。第二個參數則是 Notification 對象,這裏直接將咱們剛剛建立好的 Notification 對象傳入便可。所以,顯示一個通知就能夠寫成:
                    manager.notify(1, notification);
 
  1. import android.app.Activity;
  2. import android.app.Notification;
  3. import android.app.NotificationManager;
  4. import android.app.PendingIntent;
  5. import android.content.Intent;
  6. import android.os.Bundle;
  7. import android.view.View;
  8. import android.view.View.OnClickListener;
  9. import android.widget.Button;
  10. import android.widget.RemoteViews;
  11. publicclassMyNotificationActivityextendsActivity{
  12. privateButton btn_notify1;
  13. privateNotificationManager nManager;
  14. privateNotification notification ;
  15. @Override
  16. protectedvoid onCreate(Bundle savedInstanceState){
  17. // TODO Auto-generated method stub
  18. super.onCreate(savedInstanceState);
  19. setContentView(R.layout.layout_notification);
  20. //獲得notification管理器
  21. nManager =(NotificationManager) getSystemService(NOTIFICATION_SERVICE);
  22. btn_notify1 =(Button)findViewById(R.id.btn_notify1);
  23. btn_notify1.setOnClickListener(newOnClickListener(){
  24. @Override
  25. publicvoid onClick(View v){
  26. // TODO Auto-generated method stub
  27. PendingIntent piIntent =PendingIntent.getActivity(MyNotificationActivity.this,1,newIntent(MyNotificationActivity.this,FormActivity.class),1);
  28. /*Notification notification = new Notification(R.drawable.p2409, "You have a message", System.currentTimeMillis());
  29. notification.setLatestEventInfo(MyNotificationActivity.this, "Racoon", "Love U", piIntent);
  30. */
  31. //建立notification實例
  32. notification =newNotification.Builder(MyNotificationActivity.this)
  33. .setContentText("Love U")
  34. .setContentTitle("little Racoon")
  35. .setTicker("You have a new message")
  36. .setSmallIcon(R.drawable.peasy)//狀態欄的圖標
  37. .setContentIntent(piIntent)
  38. .getNotification();
  39. notification.contentView =newRemoteViews(getPackageName(), R.layout.layout_customnotification);
  40. //把notification發佈到狀態欄
  41. nManager.notify(1, notification);
  42. }
  43. });
  44. }
  45. @Override
  46. protectedvoid onStop(){
  47. // TODO Auto-generated method stub
  48. nManager.cancelAll();
  49. super.onStop();
  50. }
  51. }
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical">
  6. <Button
  7. android:id="@+id/btn_notify1"
  8. style="?android:attr/buttonStyleSmall"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:text="Common notify"/>
  12. </LinearLayout>
如今就能夠來運行一下程序了,點擊 Common notify 按鈕,就會看到有 一條通知在系統狀態欄顯示出來,如圖所示。
 
 
下拉系統狀態欄能夠看到該通知的詳細信息,如圖所示
 
 
若是你使用過 Android 手機,此時應該會下意識地認爲這條通知是能夠點擊的。可是當 你去點擊它的時候,你會發現沒有任何效果。不對啊,好像每條通知點擊以後都應該會有反 應的呀?其實要想實現通知的點擊效果,咱們還須要在代碼中進行相應的設置,這就涉及到 了一個新的概念,PendingIntent。
 
PendingIntent 從名字上看起來就和 Intent 有些相似,它們之間也確實存在着很多共同點。好比它們均可以去指明某一個「意圖」,均可以用於啓動活動、啓動服務以及發送廣播等。不一樣的是,Intent 更加傾向於去當即執行某個動做,而 PendingIntent 更加傾向於在某個合適的時機去執行某個動做。因此,也能夠把 PendingIntent 簡單地理解爲延遲執行的 Intent。PendingIntent並非Intent!
 
 
PendingIntent 的用法一樣很簡單, 它主要提供了幾個靜態方法用於獲取 PendingIntent 的實例,能夠根據需求來選擇是使用 getActivity()方法、getBroadcast()方法、仍是 getService() 方法。這幾個方法所接收的參數都是相同的,第一個參數依舊是 Context,不用多作解釋。 第二個參數通常用不到,一般都是傳入 0 便可。第三個參數是一個 Intent 對象,咱們能夠通 過這個對象構建出 PendingIntent 的「意圖」。第四個參數用於肯定 PendingIntent 的行爲,有 FLAG_ONE_SHOT、FLAG_NO_CREATE、FLAG_CANCEL_CURRENT 和 FLAG_UPDATE_ CURRENT 這四種值可選,每種值的含義你能夠查看文檔。
 
怎麼系統狀態上的通知圖標尚未消失呢?是這樣的,若是咱們沒有在代碼中對該通知進行取消,它就會一直顯示在系統的狀態欄上顯示。解決的方法也很簡單,調用NotificationManager 的 cancel()方法就能夠取消通知了。
 
 



相關文章
相關標籤/搜索