[置頂] Android之Notification使用大全

     在3.0以後官方就推薦用建造者模式建Notification   
     
      總結了在各種API下Notification的使用情況、關於自定義通知欄的RemoteView的使用可以參考任永剛大神的《Android開發藝術探索》第五章,本人後續也會整理總結,方便日後使用




  1. package com.yzw.android;
  2. import android.app.Activity;  
  3. import android.app.Notification;  
  4. import android.app.NotificationManager;  
  5. import android.app.PendingIntent;  
  6. import android.content.Context;  
  7. import android.content.Intent;  
  8. import android.os.Bundle;  
  9. import android.view.View;  
  10. import android.widget.RemoteViews;  
  11.   
  12. public class MainActivity extends Activity {  
  13.     private static final int NOTIFICATION_FLAG = 1;  
  14.   
  15.     @Override  
  16.     protected void onCreate(Bundle savedInstanceState) {  
  17.         super.onCreate(savedInstanceState);  
  18.         setContentView(R.layout.activity_main);  
  19.     }  
  20.   
  21.     public void notificationMethod(View view) {  
  22.         // 在Android進行通知處理,首先需要重系統哪裏獲得通知管理器NotificationManager,它是一個系統Service。  
  23.         NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);  
  24.         switch (view.getId()) {  
  25.         // 默認通知  
  26.         case R.id.btn1:  
  27.             // 創建一個PendingIntent,和Intent類似,不同的是由於不是馬上調用,需要在下拉狀態條出發的activity,所以採用的是PendingIntent,即點擊Notification跳轉啓動到哪個Activity  
  28.             PendingIntent pendingIntent = PendingIntent.getActivity(this0,  
  29.                     new Intent(this, MainActivity.class), 0);  
  30.             // 下面需兼容Android 2.x版本是的處理方式  
  31.             // Notification notify1 = new Notification(R.drawable.message,  
  32.             // "TickerText:" + "您有新短消息,請注意查收!", System.currentTimeMillis());  
  33.             Notification notify1 = new Notification();  
  34.             notify1.icon = R.drawable.message;  
  35.             notify1.tickerText = "TickerText:您有新短消息,請注意查收!";  
  36.             notify1.when = System.currentTimeMillis();  
  37.             notify1.setLatestEventInfo(this"Notification Title",  
  38.                     "This is the notification message", pendingIntent);  
  39.             notify1.number = 1;  
  40.             notify1.flags |= Notification.FLAG_AUTO_CANCEL; // FLAG_AUTO_CANCEL表明當通知被用戶點擊時,通知將被清除。  
  41.             // 通過通知管理器來發起通知。如果id不同,則每click,在statu那裏增加一個提示  
  42.             manager.notify(NOTIFICATION_FLAG, notify1);  
  43.             break;  
  44.         // 默認通知 API11及之後可用  
  45.         case R.id.btn2:  
  46.             PendingIntent pendingIntent2 = PendingIntent.getActivity(this0,  
  47.                     new Intent(this, MainActivity.class), 0);  
  48.             // 通過Notification.Builder來創建通知,注意API Level  
  49.             // API11之後才支持  
  50.             Notification notify2 = new Notification.Builder(this)  
  51.                     .setSmallIcon(R.drawable.message) // 設置狀態欄中的小圖片,尺寸一般建議在24×24,這個圖片同樣也是在下拉狀態欄中所顯示,如果在那裏需要更換更大的圖片,可以使用setLargeIcon(Bitmap  
  52.                                                         // icon)  
  53.                     .setTicker("TickerText:" + "您有新短消息,請注意查收!")// 設置在status  
  54.                                                                 // bar上顯示的提示文字  
  55.                     .setContentTitle("Notification Title")// 設置在下拉status  
  56.                                                             // bar後Activity,本例子中的NotififyMessage的TextView中顯示的標題  
  57.                     .setContentText("This is the notification message")// TextView中顯示的詳細內容  
  58.                     .setContentIntent(pendingIntent2) // 關聯PendingIntent  
  59.                     .setNumber(1// 在TextView的右方顯示的數字,可放大圖片看,在最右側。這個number同時也起到一個序列號的左右,如果多個觸發多個通知(同一ID),可以指定顯示哪一個。  
  60.                     .getNotification(); // 需要注意build()是在API level  
  61.             // 16及之後增加的,在API11中可以使用getNotificatin()來代替  
  62.             notify2.flags |= Notification.FLAG_AUTO_CANCEL;  
  63.             manager.notify(NOTIFICATION_FLAG, notify2);  
  64.             break;  
  65.         // 默認通知 API16及之後可用  
  66.         case R.id.btn3:  
  67.             PendingIntent pendingIntent3 = PendingIntent.getActivity(this0,  
  68.                     new Intent(this, MainActivity.class), 0);  
  69.             // 通過Notification.Builder來創建通知,注意API Level  
  70.             // API16之後才支持  
  71.             Notification notify3 = new Notification.Builder(this)  
  72.                     .setSmallIcon(R.drawable.message)  
  73.                     .setTicker("TickerText:" + "您有新短消息,請注意查收!")  
  74.                     .setContentTitle("Notification Title")  
  75.                     .setContentText("This is the notification message")  
  76.                     .setContentIntent(pendingIntent3).setNumber(1).build(); // 需要注意build()是在API  
  77.                                                                             // level16及之後增加的,API11可以使用getNotificatin()來替代  
  78.             notify3.flags |= Notification.FLAG_AUTO_CANCEL; // FLAG_AUTO_CANCEL表明當通知被用戶點擊時,通知將被清除。  
  79.             manager.notify(NOTIFICATION_FLAG, notify3);// 步驟4:通過通知管理器來發起通知。如果id不同,則每click,在status哪裏增加一個提示  
  80.             break;  
  81.         // 自定義通知  
  82.         case R.id.btn4:  
  83.             // Notification myNotify = new Notification(R.drawable.message,  
  84.             // "自定義通知:您有新短信息了,請注意查收!", System.currentTimeMillis());  
  85.             Notification myNotify = new Notification();  
  86.             myNotify.icon = R.drawable.message;  
  87.             myNotify.tickerText = "TickerText:您有新短消息,請注意查收!";  
  88.             myNotify.when = System.currentTimeMillis();  
  89.             myNotify.flags = Notification.FLAG_NO_CLEAR;// 不能夠自動清除  
  90.             RemoteViews rv = new RemoteViews(getPackageName(),  
  91.                     R.layout.my_notification);  
  92.             rv.setTextViewText(R.id.text_content, "hello wrold!");  
  93.             myNotify.contentView = rv;  
  94.             Intent intent = new Intent(Intent.ACTION_MAIN);  
  95.             PendingIntent contentIntent = PendingIntent.getActivity(this1,  
  96.                     intent, 1);  
  97.             myNotify.contentIntent = contentIntent;  
  98.             manager.notify(NOTIFICATION_FLAG, myNotify);  
  99.             break;  
  100.         case R.id.btn5:  
  101.             // 清除id爲NOTIFICATION_FLAG的通知  
  102.             manager.cancel(NOTIFICATION_FLAG);  
  103.             // 清除所有的通知  
  104.             // manager.cancelAll();  
  105.             break;  
  106.         default:  
  107.             break;  
  108.         }  
  109.     }  
  110. }  

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章