Android Notification通知簡介

Android Notification通知簡介android

 

根據activity的生命週期,在activity不顯示時,會執行onStop函數(好比按下home鍵),因此你在onStop函數(按退出鍵除外)裏面把notification放在通知欄裏,再此顯示時,把notification從通知欄裏去掉。或者,只要程序在運行就一直顯示通知欄圖標。app

        

下面對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 (最好在真機上測試,震動效果模擬器上沒有)
ide

            

//設置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
this

             

?
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);  
     }
?
     //刪除通知   
     private void clearNotification(){
         // 啓動後刪除以前咱們定義的通知  
         NotificationManager notificationManager = (NotificationManager) this 
                 .getSystemService(NOTIFICATION_SERVICE);  
         notificationManager.cancel( 0 ); 
 
     }
}
相關文章
相關標籤/搜索