Android Notification 通知詳解
根據activity的生命週期,在activity不顯示時,會執行onStop函式(比如按下home鍵),所以你在onStop函式(按退出鍵除外)裡面把notification放在通知欄裡,再此顯示時,把notification從通知欄裡去掉。或者,只要程式在執行就一直顯示通知欄圖示。
下面對Notification類中的一些常量,欄位,方法簡單介紹一下:
常量:
DEFAULT_ALL 使用所有預設值,比如聲音,震動,閃屏等等
DEFAULT_LIGHTS 使用預設閃光提示
DEFAULT_SOUNDS 使用預設提示聲音
DEFAULT_VIBRATE 使用預設手機震動
【說明】:加入手機震動,一定要在manifest.xml中加入許可權:
<uses-permission android:name=”android.permission.VIBRATE” />
以上的效果常量可以疊加,即通過
notification.defaults =DEFAULT_SOUND|DEFAULT_VIBRATE;
notification.defaults |= DEFAULT_SOUND (最好在真機上測試,震動效果模擬器上沒有)
//設定flag位
FLAG_AUTO_CANCEL 該通知能被狀態列的清除按鈕給清除掉
FLAG_NO_CLEAR 該通知能被狀態列的清除按鈕給清除掉
FLAG_ONGOING_EVENT 通知放置在正在執行
FLAG_INSISTENT 是否一直進行,比如音樂一直播放,知道使用者響應
常用欄位:
contentIntent 設定PendingIntent物件,點選時傳送該Intent
defaults 新增預設效果
flags 設定flag位,例如FLAG_NO_CLEAR等
icon 設定圖示
sound 設定聲音
tickerText 顯示在狀態列中的文字
when 傳送此通知的時間戳
NotificationManager常用方法介紹:
public void cancelAll() 移除所有通知(只是針對當前Context下的Notification)
public void cancel(int id) 移除標記為id的通知 (只是針對當前Context下的所有Notification)
public void notify(String tag ,int id, Notification notification) 將通知加入狀態列,標籤為tag,標記為id
public void notify(int id, Notification notification) 將通知加入狀態列,標記為id
package com.ljq.activity; import android.app.Activity; import android.app.Notification; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.Intent; import android.graphics.Color; import android.os.Bundle; public class MainActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); clearNotification(); } @Override protected void onStop() { showNotification(); super.onStop(); } @Override protected void onStart() { clearNotification(); super.onStart(); } /** * 在狀態列顯示通知 */ private void showNotification(){ // 建立一個NotificationManager的引用 NotificationManager notificationManager = (NotificationManager) this.getSystemService(android.content.Context.NOTIFICATION_SERVICE); // 定義Notification的各種屬性 Notification notification =new Notification(R.drawable.icon, "督導系統", System.currentTimeMillis()); //FLAG_AUTO_CANCEL 該通知能被狀態列的清除按鈕給清除掉 //FLAG_NO_CLEAR 該通知不能被狀態列的清除按鈕給清除掉 //FLAG_ONGOING_EVENT 通知放置在正在執行 //FLAG_INSISTENT 是否一直進行,比如音樂一直播放,知道使用者響應 notification.flags |= Notification.FLAG_ONGOING_EVENT; // 將此通知放到通知欄的"Ongoing"即"正在執行"組中 notification.flags |= Notification.FLAG_NO_CLEAR; // 表明在點選了通知欄中的"清除通知"後,此通知不清除,經常與FLAG_ONGOING_EVENT一起使用 notification.flags |= Notification.FLAG_SHOW_LIGHTS; //DEFAULT_ALL 使用所有預設值,比如聲音,震動,閃屏等等 //DEFAULT_LIGHTS 使用預設閃光提示 //DEFAULT_SOUNDS 使用預設提示聲音 //DEFAULT_VIBRATE 使用預設手機震動,需加上<uses-permission android:name="android.permission.VIBRATE" />許可權 notification.defaults = Notification.DEFAULT_LIGHTS; //疊加效果常量 //notification.defaults=Notification.DEFAULT_LIGHTS|Notification.DEFAULT_SOUND; notification.ledARGB = Color.BLUE; notification.ledOnMS =5000; //閃光時間,毫秒 // 設定通知的事件訊息 CharSequence contentTitle ="督導系統標題"; // 通知欄標題 CharSequence contentText ="督導系統內容"; // 通知欄內容 Intent notificationIntent =new Intent(MainActivity.this, MainActivity.class); // 點選該通知後要跳轉的Activity PendingIntent contentItent = PendingIntent.getActivity(this, 0, notificationIntent, 0); notification.setLatestEventInfo(this, contentTitle, contentText, contentItent); // 把Notification傳遞給NotificationManager notificationManager.notify(0, notification); }
相關文章
- [轉]Android 通知Notification 詳解Android
- 【Android】狀態列通知Notification、NotificationManager詳解Android
- 【Android】狀態列通知Notification、NotificationManager詳解(轉載)Android
- Android 通知之 NotificationAndroid
- android之Notification通知Android
- Android Notification 詳解Android
- Android通知Notification全面剖析Android
- Android 8 通知渠道(Notification Channels)Android
- Android呼叫訊息欄通知(Notification)Android
- Notification使用詳解之二:可更新進度的通知
- Android Notification通知欄的必備姿勢Android
- android之Notification監聽系統清除通知欄Android
- Flutter 通知(Notification)冒泡原理Flutter
- Notification桌面通知實踐
- oreo上的notification詳解
- HTML5 桌面通知:Notification APIHTMLAPI
- Android 特殊使用者通知用法彙總 - Notification 原始碼分析Android原始碼
- Flutter學習筆記(35)--通知NotificationFlutter筆記
- Android 《Notification》Android
- H5 notification瀏覽器桌面通知H5瀏覽器
- 瀏覽器語音桌面通知,Notification API瀏覽器API
- 訊息通知(Notification)系統最佳化
- Notification使用詳解之三:通過服務更新進度通知&在Activity中監聽服務進度
- 聊聊HTML5中的Web Notification桌面通知HTMLWeb
- Android中的NotificationAndroid
- Notification API,為你的網頁新增桌面通知推送API網頁
- 程式設計技巧│瀏覽器 Notification 桌面推送通知程式設計瀏覽器
- Spring AOP中的前置通知和後置通知詳解Spring
- Android O 新特性 — NotificationAndroid
- 訊息通知(Notification)/使用者觸達系統設計
- Objective-C中的老闆是這樣發通知的(Notification)Object
- Android之Notification和RemoteviewAndroidREMView
- android Notification 程式碼備份Android
- Android通知之狀態列通知Android
- 定時任務報警通知解決方案詳解
- Android 深入理解 Notification 機制Android
- Android Notification 用法的4種形式Android
- Chrome瀏覽器擴充套件開發系列之十:桌面通知NotificationChrome瀏覽器套件