Android學習總結(十五) ———— Notification(狀態欄通知)基本用法

1、Notification基本概念

   Notification是一種具備全局效果的通知,它展現在屏幕的頂端,首先會表現爲一個圖標的形式,當用戶向下滑動的時候,展現出通知具體的內容。咱們在用手機的時候,若是來了短信,而咱們沒有點擊查看的話,在手機的最上邊的狀態欄裏有一個短信的小圖標提示,這個提示效果就是用Notification來作。android

2、Notification的基本使用流程

  狀態通知欄主要涉及到2個類:Notification 和NotificationManager網絡

  Notification:通知信息類,它裏面對應了通知欄的各個屬性app

  NotificationManager:是狀態欄通知的管理類,負責發通知、清除通知等操做。ide

使用的基本流程:佈局

  1. 得到NotificationManager對象: NotificationManager mNManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
  2. 建立一個通知欄的Builder構造類: Notification.Builder mBuilder = new Notification.Builder(this);
  3. 對Builder進行相關的設置,好比標題,內容,圖標,動做等!
  4. 調用Builder的build()方法爲notification賦值
  5. 調用NotificationManager的notify()方法發送通知! 

  另外咱們還能夠調用NotificationManager的cancel()方法取消通知ui

3、設置相關的一些方法

  • setContentTitle(CharSequence):設置標題  this

  • setContentText(CharSequence):設置內容
  • setSubText(CharSequence):設置內容下面一小行的文字
  • setTicker(CharSequence):設置收到通知時在頂部顯示的文字信息
  • setWhen(long):設置通知時間,通常設置的是收到通知時的System.currentTimeMillis()
  • setSmallIcon(int):設置右下角的小圖標,在接收到通知的時候頂部也會顯示這個小圖標
  • setLargeIcon(Bitmap):設置左邊的大圖標
  • setAutoCancel(boolean):用戶點擊Notification點擊面板後是否讓通知取消(默認不取消)
  • setDefaults(int):向通知添加聲音、閃燈和振動效果的最簡單、 使用默認(defaults)屬性,能夠組合多個屬性
  • Notification.DEFAULT_VIBRATE(添加默認震動提醒)
  • Notification.DEFAULT_SOUND(添加默認聲音提醒)
  • Notification.DEFAULT_LIGHTS(添加默認三色燈提醒)
  • Notification.DEFAULT_ALL(添加默認以上3種所有提醒)
  • setVibrate(long[]):設置振動方式,好比:setVibrate(new long[] {0,300,500,700});延遲0ms,而後振動300ms,在延遲500ms, 接着再振動700ms
  • setLights(int argb, int onMs, int offMs):設置三色燈,參數依次是:燈光顏色, 亮持續時間,暗的時間,不是全部顏色均可以,這跟設備有關,有些手機還不帶三色燈; 另外,還須要爲Notification設置flags爲Notification.FLAG_SHOW_LIGHTS才支持三色燈提醒!
  • setSound(Uri):設置接收到通知時的鈴聲,能夠用系統的,也能夠本身設置,例子以下:
    .setDefaults(Notification.DEFAULT_SOUND) //獲取默認鈴聲
    .setSound(Uri.parse("file:///sdcard/xx/xx.mp3")) //獲取自定義鈴聲
    .setSound(Uri.withAppendedPath(Audio.Media.INTERNAL_CONTENT_URI, "5")) //獲取Android多媒體庫內的鈴聲
  • setOngoing(boolean):設置爲ture,表示它爲一個正在進行的通知。他們一般是用來表示 一個後臺任務,用戶積極參與(如播放音樂)或以某種方式正在等待,所以佔用設備(如一個文件下載, 同步操做,主動網絡鏈接)
  • setProgress(int,int,boolean):設置帶進度條的通知 參數依次爲:進度條最大數值,當前進度,進度是否不肯定 若是爲肯定的進度條:調用setProgress(max, progress, false)來設置通知, 在更新進度的時候在此發起通知更新progress,而且在下載完成後要移除進度條 ,經過調用setProgress(0, 0, false)既可。若是爲不肯定(持續活動)的進度條, 這是在處理進度沒法準確獲知時顯示活動正在持續,因此調用setProgress(0, 0, true) ,操做結束時,調用setProgress(0, 0, false)並更新通知以移除指示條
  • setContentInten(PendingIntent):PendingIntent和Intent略有不一樣,它能夠設置執行次數, 主要用於遠程服務通訊、鬧鈴、通知、啓動器、短信中,在通常狀況下用的比較少。好比這裏經過 Pending啓動Activity:getActivity(Context, int, Intent, int),固然還能夠啓動Service或者Broadcast PendingIntent的位標識符(第四個參數)
  • FLAG_ONE_SHOT 表示返回的PendingIntent僅能執行一次,執行完後自動取消
  • FLAG_NO_CREATE 表示若是描述的PendingIntent不存在,並不建立相應的PendingIntent,而是返回NULL
  • FLAG_CANCEL_CURRENT 表示相應的PendingIntent已經存在,則取消前者,而後建立新的PendingIntent, 這個有利於數據保持爲最新的,能夠用於即時通訊的通訊場景
  • FLAG_UPDATE_CURRENT 表示更新的PendingIntent

4、示例代碼

  首先定義兩個簡單的按鈕,這裏就不寫出來了,接着在MainActivity類實現功能 ,代碼以下所示:spa

package com.nyl.notification;

import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class MainActivity extends Activity implements View.OnClickListener {

    private Context context;
    private NotificationManager notificationManager;
    private Notification notification;
    Bitmap bitmap = null; //位圖
    private static final int NOTIFICATION_1 = 1;


    private Button btnShow;
    private Button btnClose;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        context = this;
        //建立圖片的Bitmap
        bitmap = BitmapFactory.decodeResource(getResources(),R.mipmap.activity_main);
        notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
        initView(); //初始化控件
    }

    /**
     * 初始化佈局控件
     */
    private void initView() {
        btnShow = (Button) findViewById(R.id.btnShow);
        btnClose = (Button) findViewById(R.id.btnClose);

        btnShow.setOnClickListener(this);
        btnClose.setOnClickListener(this);
    }

    @Override
    public void onClick(View view) {
        switch (view.getId()){
            case R.id.btnShow:
                // //定義一個PendingIntent點擊Notification後啓動一個Activity
                Intent intent = new Intent(context,OtherActivity.class);
                PendingIntent pendingIntent = PendingIntent.getActivity(context,0,intent,0);

                //設置圖片,通知標題,發送時間,提示方式等屬性
                Notification.Builder builder = new Notification.Builder(this);
                //標題
                builder.setContentTitle("狀態欄通知")
                        .setContentText("狀態欄會顯示一個通知欄的圖標") //內容
                        .setSubText("豐富你的程序,運用手機多媒體") //內容下面的一小段文字
                        .setTicker("收到Notification信息")   //收到信息後狀態顯示的文字信息
                        .setWhen(System.currentTimeMillis()) //設置通知時間
                        .setSmallIcon(R.mipmap.ic_launcher) //設置小圖片
                        .setLargeIcon(bitmap) //設置大圖片
                        .setDefaults(Notification.DEFAULT_LIGHTS | Notification.DEFAULT_VIBRATE) //設置默認的三色燈與振動器
                        .setSound(Uri.parse("android.resource://" + getPackageName() + "/" + R.raw.kalimba)) //設置自定義的提示音
                        .setAutoCancel(true) //設置點擊後取消Notification
                        .setContentIntent(pendingIntent); //設置pendingIntent

                notification = builder.build();
                notificationManager.notify(NOTIFICATION_1,notification);
                break;

            case R.id.btnClose:
                //除了能夠根據ID來取消Notification外,還能夠調用cancelAll();關閉該應用產生的全部通知
                notificationManager.cancel(NOTIFICATION_1); //取消Notification
                break;

        }

    }
}

  點擊【顯示普通的狀態欄通知】按鈕,運行效果以下:.net

  

  在手機的最上邊的狀態欄裏出現了【收到Notification信息】的提示消息,向下滑動,能夠看到通知的圖標,標題,子標題這些內容,以下圖所示:code

  

  點擊通知,就能夠看到通知的詳細內容,以下圖所示:

  

  這裏是顯示一張照片

  點擊【關閉狀態欄通知】按鈕是關閉手機狀態欄上顯示通知消息,關閉以後,就看不到了。這裏不貼圖了。有興趣的園友本身複製代碼去動手體驗吧。

  關於Notification的基本用法就先介紹這麼多。

相關文章
相關標籤/搜索