筆記49 | Android通信之Notification[轉]

地址

https://www.cnblogs.com/travellife/p/Android-Notification-xiang-jie.html
http://www.jianshu.com/p/8f7b59a1c43dhtml


目錄

  • Notification 概述
  • Notification 的基本操做
  • 建立 Notification
  • 給 Notification 設置 Action
  • 更新 Notification
  • 取消 Notification
  • 設置 Notification 的通知效果

Notification 概述

Notification,是一種具備全局效果的通知,能夠在系統的通知欄中顯示。當 APP 向系統發出通知時,它將先以圖標的形式顯示在通知欄中。用戶能夠下拉通知欄查看通知的詳細信息。通知欄和抽屜式通知欄均是由系統控制,用戶能夠隨時查看。下面兩張圖均是來自 Google 官方文檔。java

notification_area


圖 1 .通知欄中的通知android

notification_drawe


圖 2 .抽屜式通知欄中的通知git

通知的目的是告知用戶 App 事件。在平時的使用中,通知主要有如下幾個做用:github

  1. 顯示接收到短消息、及時消息等信息(如QQ、微信、新浪、短信)
  2. 顯示客戶端的推送消息,如廣告、優惠、版本更新、推薦新聞等,經常使用的第三方 SDK 有:web

    JPush個推信鴿網易雲信(偏重 IM )阿里雲推送微信

  3. 顯示正在進行的事物,例如:後臺運行的程序,如音樂播放進度、下載進度等

其中,前兩點能夠歸結爲與用戶交互,第三點是實時的任務提醒,但不能否認的是,第三點也會與用戶交互。併發

Notification 做爲 Android 重要的用戶界面組成部分,它有本身的設計指南。在 Android 5.0(Api level 21) 中引入的less

Material Designide

尤其重要。關於 Notification 的設計指南請參考

Notification Pattern

Notification 的概述就這麼多,接下去就開始講 Notification 的基本使用,中間會穿插 Notification 的基本 UI 、各個版本的區別、常見的通知效果以及本身在學習過程當中踩到的坑。

Notification 的基本操做

Notification 的基本操做主要有建立、更新、取消這三種。一個 Notification 的必要屬性有三項,若是不設置則在運行時會拋出異常:

  1. 小圖標,經過 setSmallIcon() 方法設置
  2. 標題,經過 setContentTitle() 方法設置
  3. 內容,經過 setContentText() 方法設置

除了以上三項,其它均爲可選項。雖然如此,但仍是應該給 Notification 設置一個 Action ,這樣就能夠直接跳轉到 App 的某個 Activity 、啓動一個 Service 或者發送一個 Broadcast。不然,Notification 僅僅只能起到通知的效果,而不能與用戶交互。

當系統接收到通知時,能夠經過震動、響鈴、呼吸燈等多種方式進行提醒。


建立 Notification

Notification 的建立主要涉及到

Notification.BuilderNotificationNotificationManager

  1. Notification.Builer

    使用建造者模式構建 Notification 對象。因爲 Notification.Builder 僅支持 Android 4.1及以後的版本,爲了解決兼容性問題, Google 在 Android Support v4 中加入了 NotificationCompat.Builder 類。對於某些在 Android 4.1 以後才特性,即便 NotificationCompat.Builder 支持該方法,在以前的版本中也不能運行。點我

    查看更多關於 Notification 兼容性問題處理。文中使用的都是 NotificationCompat。

  2. Notification

    : 通知對應類,保存通知相關的數據。NotificationManager 向系統發送通知時會用到。

  3. NotificationManager

    : NotificationManager 是通知管理類,它是一個系統服務。調用 NotificationManager 的 notify() 方法能夠向系統發送通知。

獲取 NotificationManager 對象:

NotificationManager mNotifyManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

前面講到,Notification 有三個必要屬性。下面,咱們就來建立一個簡單的 Notification 。主要有如下三步:

  1. 獲取 NotificationManager 實例
  2. 實例化 NotificationCompat.Builder 並設置相關屬性
  3. 經過 builder.build() 方法生成 Notification 對象,併發送通知
private void sendNotification() {
   //獲取NotificationManager實例
   NotificationManager notifyManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
   //實例化NotificationCompat.Builde並設置相關屬性
   NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
           //設置小圖標
           .setSmallIcon(R.mipmap.icon_fab_repair)
           //設置通知標題
           .setContentTitle("最簡單的Notification")
           //設置通知內容
           .setContentText("只有小圖標、標題、內容")
           //設置通知時間,默認爲系統發出通知的時間,一般不用設置
           //.setWhen(System.currentTimeMillis());
   //經過builder.build()方法生成Notification對象,併發送通知,id=1
   notifyManager.notify(1, builder.build());
}

以上代碼是對 Android 3.0 及以後的版本而言(包括使用 Support Library),對於 Android 3.0 以前的版本,主要使用 new Notification() 方法來建立 Notification 對象,本文不對此方式作任何講解,代碼以下:

NotificationManager mNotifyMgr = 
      (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
PendingIntent contentIntent = PendingIntent.getActivity(
      this, 0, new Intent(this, ResultActivity.class), 0);

Notification notification = new Notification(icon, tickerText, when);
notification.setLatestEventInfo(this, title, content, contentIntent);

mNotifyMgr.notify(NOTIFICATIONS_ID, notification);

補充

  • Android Support Library包的區別
Android Support v4:這個包是爲了照顧1.6及更高版本而設計的,這個包是使用最普遍的。

Android Support v7:這個包是爲了考慮照顧2.1及以上版本而設計的,但不包含更低,故若是不考慮1.6,咱們能夠採用再加上這個包,另外注意,v7是要依賴v4這個包的,即,兩個得同時被包含。

Android Support v13:這個包的設計是爲了android 3.2及更高版本的,通常咱們都不經常使用,平板開發中能用到。
  • Notification 中的元素。在 Android N(24) 中, Google 對 Notification 的 UI 進行了修改。下圖是 Android M 和 Android N 的對比。
    屏幕快照 2016-10-17 上午10.33.40

  • 關於 setSmallIcon() 與 setLargeIcon()。在 NotificationCompat.Builder 中有設置通知的大小圖標的兩個方法。這兩個方法有什麼區別呢?當 setSmallIcon() 與 setLargeIcon() 同時存在時, smallIcon 顯示在通知的右下角, largeIcon 顯示在左側;當只設置 setSmallIcon() 時, smallIcon 顯示在左側。看下圖你就明白了。對於部分 ROM ,可能修改過源碼,如 MIUI 上通知的大圖標和小圖標是沒有區別的。
    屏幕快照 2016-10-17 上午10.38.05

Google 官方是這麼解釋

setSmallIcon()

這個方法的:

Set the small icon resource, which will be used to represent the notification in the status bar. The platform template for the expanded view will draw this icon in the left, unless a large icon has also been specified, in which case the small icon will be moved to the right-hand side.


給 Notification 設置 Action

在前一章節

建立 Notification

中發送的通知並不具有與用戶交互的能力,這是由於咱們並無給 Notification 設置 Action 。在這一節,咱們就來說講如何給 Notification 設置 Action 。這裏,咱們來實現一個點擊 Notification 跳轉到 MainActivity 的效果。代碼以下:

/** * 發送一個點擊跳轉到MainActivity的消息 */
private void sendSimplestNotificationWithAction() {
   //獲取PendingIntent
   Intent mainIntent = new Intent(this, MainActivity.class);
   PendingIntent mainPendingIntent = PendingIntent.getActivity(this, 0, mainIntent, PendingIntent.FLAG_UPDATE_CURRENT);
   //建立 Notification.Builder 對象
   NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
           .setSmallIcon(R.mipmap.ic_launcher)
           //點擊通知後自動清除
           .setAutoCancel(true)
           .setContentTitle("我是帶Action的Notification")
           .setContentText("點我會打開MainActivity")
           .setContentIntent(mainPendingIntent);
   //發送通知
   mNotifyManager.notify(3, builder.build());
}

相比發送最簡單的通知,發送具備 Action 的通知多了建立 Intent 、 PendingIntent 和 setContentIntent() 這幾步。
不難看出, PendingIntent 纔是重點,那麼, PendingIntent 是什麼呢?

PendingIntent

若是您瞭解 PendingIntent ,請直接跳過本節。

PendingIntent 是一種特殊的 Intent ,字面意思能夠解釋爲延遲的 Intent ,用於在某個事件結束後執行特定的 Action 。從上面帶 Action 的通知也能驗證這一點,當用戶點擊通知時,纔會執行。
PendingIntent 是 Android 系統管理並持有的用於描述和獲取原始數據的對象的標誌(引用)。也就是說,即使建立該PendingIntent對象的進程被殺死了,這個PendingItent對象在其餘進程中仍是可用的
平常使用中的短信、鬧鐘等都用到了 PendingIntent。

PendingIntent 主要能夠經過如下三種方式獲取:

//獲取一個用於啓動 Activity 的 PendingIntent 對象
public static PendingIntent getActivity(Context context, int requestCode, Intent intent, int flags);

//獲取一個用於啓動 Service 的 PendingIntent 對象
public static PendingIntent getService(Context context, int requestCode, Intent intent, int flags);

//獲取一個用於向 BroadcastReceiver 廣播的 PendingIntent 對象
public static PendingIntent getBroadcast(Context context, int requestCode, Intent intent, int flags)

PendingIntent 具備如下幾種 flag:

FLAG_CANCEL_CURRENT:若是當前系統中已經存在一個相同的 PendingIntent 對象,那麼就將先將已有的 PendingIntent 取消,而後從新生成一個 PendingIntent 對象。

FLAG_NO_CREATE:若是當前系統中不存在相同的 PendingIntent 對象,系統將不會建立該 PendingIntent 對象而是直接返回 null 。

FLAG_ONE_SHOT:該 PendingIntent 只做用一次。

FLAG_UPDATE_CURRENT:若是系統中已存在該 PendingIntent 對象,那麼系統將保留該 PendingIntent 對象,可是會使用新的 Intent 來更新以前 PendingIntent 中的 Intent 對象數據,例如更新 Intent 中的 Extras 。

更新 Notification

更新通知很簡單,只須要再次發送相同 ID 的通知便可,若是以前的通知還未被取消,則會直接更新該通知相關的屬性;若是以前的通知已經被取消,則會從新建立一個新通知。

更新通知跟發送通知使用相同的方式。詳見上節:建立 Notification


取消 Notification

取消通知有以下 5 種方式:

  1. 點擊通知欄的清除按鈕,會清除全部可清除的通知
  2. 設置了 setAutoCancel() 或 FLAG_AUTO_CANCEL 的通知,點擊該通知時會清除它
  3. 經過 NotificationManager 調用 cancel(int id) 方法清除指定 ID 的通知
  4. 經過 NotificationManager 調用 cancel(String tag, int id) 方法清除指定 TAG 和 ID 的通知
  5. 經過 NotificationManager 調用 cancelAll() 方法清除全部該應用以前發送的通知

若是你是經過 NotificationManager.notify(String tag, int id, Notification notify) 方法建立的通知,那麼只能經過 NotificationManager.cancel(String tag, int id) 方法才能清除對應的通知,調用NotificationManager.cancel(int id) 無效。

關於 Notification 的基本操做代碼以下,佈局文件代碼這就不貼了。我是 Demo 傳送門

/** * 爲了方便,大部分通知都沒設置對應的Action,即PendingIntent * 除了sendFlagAutoCancelNotification()方法 */
public class SimpleNotificationActivity extends Activity implements View.OnClickListener {

    //Notification.FLAG_FOREGROUND_SERVICE //表示正在運行的服務
    public static final String NOTIFICATION_TAG = "littlejie";
    public static final int DEFAULT_NOTIFICATION_ID = 1;

    private NotificationManager mNotificationManager;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_simple_notification);

        findViewById(R.id.btn_remove_all_notification).setOnClickListener(this);
        findViewById(R.id.btn_send_notification).setOnClickListener(this);
        findViewById(R.id.btn_remove_notification).setOnClickListener(this);
        findViewById(R.id.btn_send_notification_with_tag).setOnClickListener(this);
        findViewById(R.id.btn_remove_notification_with_tag).setOnClickListener(this);
        findViewById(R.id.btn_send_ten_notification).setOnClickListener(this);
        findViewById(R.id.btn_send_flag_no_clear_notification).setOnClickListener(this);
        findViewById(R.id.btn_send_flag_ongoing_event_notification).setOnClickListener(this);
        findViewById(R.id.btn_send_flag_auto_cancecl_notification).setOnClickListener(this);

        mNotificationManager = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);
    }

    @Override
    public void onClick(View v) {
        switch (v.getId()) {
            case R.id.btn_remove_all_notification:
                //移除當前 Context 下全部 Notification,包括 FLAG_NO_CLEAR 和 FLAG_ONGOING_EVENT
                mNotificationManager.cancelAll();
                break;
            case R.id.btn_send_notification:
                //發送一個 Notification,此處 ID = 1
                sendNotification();
                break;
            case R.id.btn_remove_notification:
                //移除 ID = 1 的 Notification,注意:該方法只針對當前 Context。
                mNotificationManager.cancel(DEFAULT_NOTIFICATION_ID);
                break;
            case R.id.btn_send_notification_with_tag:
                //發送一個 ID = 1 而且 TAG = littlejie 的 Notification
                //注意:此處發送的通知與 sendNotification() 發送的通知並不衝突
                //由於此處的 Notification 帶有 TAG
                sendNotificationWithTag();
                break;
            case R.id.btn_remove_notification_with_tag:
                //移除一個 ID = 1 而且 TAG = littlejie 的 Notification
                //注意:此處移除的通知與 NotificationManager.cancel(int id) 移除通知並不衝突
                //由於此處的 Notification 帶有 TAG
                mNotificationManager.cancel(NOTIFICATION_TAG, DEFAULT_NOTIFICATION_ID);
                break;
            case R.id.btn_send_ten_notification:
                //連續發十條 Notification
                sendTenNotifications();
                break;
            case R.id.btn_send_flag_no_clear_notification:
                //發送 ID = 1, flag = FLAG_NO_CLEAR 的 Notification
                //下面兩個 Notification 的 ID 都爲 1,會發現 ID 相等的 Notification 會被最新的替換掉
                sendFlagNoClearNotification();
                break;
            case R.id.btn_send_flag_auto_cancecl_notification:
                sendFlagOngoingEventNotification();
                break;
            case R.id.btn_send_flag_ongoing_event_notification:
                sendFlagAutoCancelNotification();
                break;
        }
    }

    /** * 發送最簡單的通知,該通知的ID = 1 */
    private void sendNotification() {
        //這裏使用 NotificationCompat 而不是 Notification ,由於 Notification 須要 API 16 才能使用
        //NotificationCompat 存在於 V4 Support Library
        NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
                .setSmallIcon(R.mipmap.ic_launcher)
                .setContentTitle("Send Notification")
                .setContentText("Hi,My id is 1");
        mNotificationManager.notify(DEFAULT_NOTIFICATION_ID, builder.build());
    }

    /** * 使用notify(String tag, int id, Notification notification)方法發送通知 * 移除對應通知需使用 cancel(String tag, int id) */
    private void sendNotificationWithTag() {
        NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
                .setSmallIcon(R.mipmap.ic_launcher)
                .setContentTitle("Send Notification With Tag")
                .setContentText("Hi,My id is 1,tag is " + NOTIFICATION_TAG);
        mNotificationManager.notify(NOTIFICATION_TAG, DEFAULT_NOTIFICATION_ID, builder.build());
    }

    /** * 循環發送十個通知 */
    private void sendTenNotifications() {
        for (int i = 0; i < 10; i++) {
            NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
                    .setSmallIcon(R.mipmap.ic_launcher)
                    .setContentTitle("Send Notification Batch")
                    .setContentText("Hi,My id is " + i);
            mNotificationManager.notify(i, builder.build());
        }
    }

    /** * 設置FLAG_NO_CLEAR * 該 flag 表示該通知不能被狀態欄的清除按鈕給清除掉,也不能被手動清除,但能經過 cancel() 方法清除 * Notification.flags屬性能夠經過 |= 運算疊加效果 */
    private void sendFlagNoClearNotification() {
        NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
                .setSmallIcon(R.mipmap.ic_launcher)
                .setContentTitle("Send Notification Use FLAG_NO_CLEAR")
                .setContentText("Hi,My id is 1,i can't be clear.");
        Notification notification = builder.build();
        //設置 Notification 的 flags = FLAG_NO_CLEAR
        //FLAG_NO_CLEAR 表示該通知不能被狀態欄的清除按鈕給清除掉,也不能被手動清除,但能經過 cancel() 方法清除
        //flags 能夠經過 |= 運算疊加效果
        notification.flags |= Notification.FLAG_NO_CLEAR;
        mNotificationManager.notify(DEFAULT_NOTIFICATION_ID, notification);
    }

    /** * 設置FLAG_AUTO_CANCEL * 該 flag 表示用戶單擊通知後自動消失 */
    private void sendFlagAutoCancelNotification() {
        //設置一個Intent,否則點擊通知不會自動消失
        Intent resultIntent = new Intent(this, MainActivity.class);
        PendingIntent resultPendingIntent = PendingIntent.getActivity(
                this, 0, resultIntent, PendingIntent.FLAG_UPDATE_CURRENT);
        NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
                .setSmallIcon(R.mipmap.ic_launcher)
                .setContentTitle("Send Notification Use FLAG_AUTO_CLEAR")
                .setContentText("Hi,My id is 1,i can be clear.")
                .setContentIntent(resultPendingIntent);
        Notification notification = builder.build();
        //設置 Notification 的 flags = FLAG_NO_CLEAR
        //FLAG_AUTO_CANCEL 表示該通知能被狀態欄的清除按鈕給清除掉
        //等價於 builder.setAutoCancel(true);
        notification.flags |= Notification.FLAG_AUTO_CANCEL;
        mNotificationManager.notify(DEFAULT_NOTIFICATION_ID, notification);
    }

    /** * 設置FLAG_ONGOING_EVENT * 該 flag 表示發起正在運行事件(活動中) */
    private void sendFlagOngoingEventNotification() {
        NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
                .setSmallIcon(R.mipmap.ic_launcher)
                .setContentTitle("Send Notification Use FLAG_ONGOING_EVENT")
                .setContentText("Hi,My id is 1,i can't be clear.");
        Notification notification = builder.build();
        //設置 Notification 的 flags = FLAG_NO_CLEAR
        //FLAG_ONGOING_EVENT 表示該通知通知放置在正在運行,不能被手動清除,但能經過 cancel() 方法清除
        //等價於 builder.setOngoing(true);
        notification.flags |= Notification.FLAG_ONGOING_EVENT;
        mNotificationManager.notify(DEFAULT_NOTIFICATION_ID, notification);
    }    
}

設置 Notification 的通知效果

前面講了 Notification 的建立、更新和取消,以及給 Notification 設置 Action 等基本操做。那麼,我怎麼給 Notification 設置諸如震動、鈴聲、呼吸燈等效果呢?別急,接下來立刻就會告訴你怎麼給 Notification 添加效果。

Notification 有震動、響鈴、呼吸燈三種響鈴效果,能夠經過

setDefaults(int defualts)

方法來設置。 Default 屬性有如下四種,一旦設置了 Default 效果,自定義的效果就會失效。樓主在這裏踩了坑,愣是調了半天沒找到爲何自定義效果會消失,忘你們慎之。

//設置系統默認提醒效果,一旦設置默認提醒效果,則自定義的提醒效果會所有失效。具體可看源碼
//添加默認震動效果,須要申請震動權限
//<uses-permission android:name="android.permission.VIBRATE" />
Notification.DEFAULT_VIBRATE

//添加系統默認聲音效果,設置此值後,調用setSound()設置自定義聲音無效
Notification.DEFAULT_SOUND

//添加默認呼吸燈效果,使用時須與 Notification.FLAG_SHOW_LIGHTS 結合使用,不然無效
Notification.DEFAULT_LIGHTS

//添加上述三種默認提醒效果
Notification.DEFAULT_ALL

除了以上幾種設置 Notification 默認通知效果,還能夠經過如下幾種 FLAG 設置通知效果。

//提醒效果經常使用 Flag
//三色燈提醒,在使用三色燈提醒時候必須加該標誌符
Notification.FLAG_SHOW_LIGHTS

//發起正在運行事件(活動中)
Notification.FLAG_ONGOING_EVENT

//讓聲音、振動無限循環,直到用戶響應 (取消或者打開)
Notification.FLAG_INSISTENT

//發起Notification後,鈴聲和震動均只執行一次
Notification.FLAG_ONLY_ALERT_ONCE

//用戶單擊通知後自動消失
Notification.FLAG_AUTO_CANCEL

//只有調用NotificationManager.cancel()時纔會清除
Notification.FLAG_NO_CLEAR

//表示正在運行的服務
Notification.FLAG_FOREGROUND_SERVICE

Notification 通知效果的設置方式及注意事項所有在代碼中,核心代碼以下:

/** * 最普通的通知效果 */
private void showNotifyOnlyText() {
   NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
           .setSmallIcon(R.mipmap.ic_launcher)
           .setLargeIcon(mLargeIcon)
           .setContentTitle("我是隻有文字效果的通知")
           .setContentText("我沒有鈴聲、震動、呼吸燈,但我就是一個通知");
   mManager.notify(1, builder.build());
}

/** * 展現有自定義鈴聲效果的通知 * 補充:使用系統自帶的鈴聲效果:Uri.withAppendedPath(Audio.Media.INTERNAL_CONTENT_URI, "6"); */
private void showNotifyWithRing() {
   NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
           .setSmallIcon(R.mipmap.ic_launcher)
           .setContentTitle("我是伴有鈴聲效果的通知")
           .setContentText("美妙麼?安靜聽~")
           //調用系統默認響鈴,設置此屬性後setSound()會無效
           //.setDefaults(Notification.DEFAULT_SOUND)
           //調用系統多媒體褲內的鈴聲
           //.setSound(Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI,"2"));
           //調用本身提供的鈴聲,位於 /res/values/raw 目錄下
           .setSound(Uri.parse("android.resource://com.littlejie.notification/" + R.raw.sound));
   //另外一種設置鈴聲的方法
   //Notification notify = builder.build();
   //調用系統默認鈴聲
   //notify.defaults = Notification.DEFAULT_SOUND;
   //調用本身提供的鈴聲
   //notify.sound = Uri.parse("android.resource://com.littlejie.notification/"+R.raw.sound);
   //調用系統自帶的鈴聲
   //notify.sound = Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI,"2");
   //mManager.notify(2,notify);
   mManager.notify(2, builder.build());
}

/** * 展現有震動效果的通知,須要在AndroidManifest.xml中申請震動權限 * <uses-permission android:name="android.permission.VIBRATE" /> * 補充:測試震動的時候,手機的模式必定要調成鈴聲+震動模式,不然你是感覺不到震動的 */
private void showNotifyWithVibrate() {
   //震動也有兩種設置方法,與設置鈴聲同樣,在此再也不贅述
   long[] vibrate = new long[]{0, 500, 1000, 1500};
   NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
           .setSmallIcon(R.mipmap.ic_launcher)
           .setContentTitle("我是伴有震動效果的通知")
           .setContentText("顫抖吧,凡人~")
           //使用系統默認的震動參數,會與自定義的衝突
           //.setDefaults(Notification.DEFAULT_VIBRATE)
           //自定義震動效果
           .setVibrate(vibrate);
   //另外一種設置震動的方法
   //Notification notify = builder.build();
   //調用系統默認震動
   //notify.defaults = Notification.DEFAULT_VIBRATE;
   //調用本身設置的震動
   //notify.vibrate = vibrate;
   //mManager.notify(3,notify);
   mManager.notify(3, builder.build());
}

/** * 顯示帶有呼吸燈效果的通知,可是不知道爲何,本身這裏測試沒成功 */
private void showNotifyWithLights() {
   final NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
           .setSmallIcon(R.mipmap.ic_launcher)
           .setContentTitle("我是帶有呼吸燈效果的通知")
           .setContentText("一閃一閃亮晶晶~")
           //ledARGB 表示燈光顏色、 ledOnMS 亮持續時間、ledOffMS 暗的時間
           .setLights(0xFF0000, 3000, 3000);
   Notification notify = builder.build();
   //只有在設置了標誌符Flags爲Notification.FLAG_SHOW_LIGHTS的時候,才支持呼吸燈提醒。
   notify.flags = Notification.FLAG_SHOW_LIGHTS;
   //設置lights參數的另外一種方式
   //notify.ledARGB = 0xFF0000;
   //notify.ledOnMS = 500;
   //notify.ledOffMS = 5000;
   //使用handler延遲發送通知,由於鏈接usb時,呼吸燈一直會亮着
   Handler handler = new Handler();
   handler.postDelayed(new Runnable() {
       @Override
       public void run() {
           mManager.notify(4, builder.build());
       }
   }, 10000);
}

/** * 顯示帶有默認鈴聲、震動、呼吸燈效果的通知 * 如需實現自定義效果,請參考前面三個例子 */
private void showNotifyWithMixed() {
   NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
           .setSmallIcon(R.mipmap.ic_launcher)
           .setContentTitle("我是有鈴聲+震動+呼吸燈效果的通知")
           .setContentText("我是最棒的~")
           //等價於setDefaults(Notification.DEFAULT_SOUND | Notification.DEFAULT_LIGHTS | Notification.DEFAULT_VIBRATE);
           .setDefaults(Notification.DEFAULT_ALL);
   mManager.notify(5, builder.build());
}

/** * 通知無限循環,直到用戶取消或者打開通知欄(其實觸摸就能夠了),效果與FLAG_ONLY_ALERT_ONCE相反 * 注:這裏沒有給Notification設置PendingIntent,也就是說該通知沒法響應,因此只能手動取消 */
private void showInsistentNotify() {
   NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
           .setSmallIcon(R.mipmap.ic_launcher)
           .setContentTitle("我是一個死循環,除非你取消或者響應")
           .setContentText("啦啦啦~")
           .setDefaults(Notification.DEFAULT_ALL);
   Notification notify = builder.build();
   notify.flags |= Notification.FLAG_INSISTENT;
   mManager.notify(6, notify);
}

/** * 通知只執行一次,與默認的效果同樣 */
private void showAlertOnceNotify() {
   NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
           .setSmallIcon(R.mipmap.ic_launcher)
           .setContentTitle("仔細看,我就執行一遍")
           .setContentText("好了,已經一遍了~")
           .setDefaults(Notification.DEFAULT_ALL);
   Notification notify = builder.build();
   notify.flags |= Notification.FLAG_ONLY_ALERT_ONCE;
   mManager.notify(7, notify);
}

/** * 清除全部通知 */
private void clearNotify() {
   mManager.cancelAll();
}

至此, Notification 的基本操做都已經講完了,發送一個帶有自定義效果的簡單通知已經不在話下。接下去,咱們會講 Notification 的一些高級操做。快上車,沒時間解釋了~

個人Android征途

相關文章
相關標籤/搜索