android之Notification的例子
public class HelloActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_hello);
clearNotification();
}
@Override
protected void onStop() {
showNotification();
super.onStop();
}
@Override
protected void onStart() {
clearNotification();
super.onStart();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.hello, menu);
return true;
}
/**
* 在狀態列顯示通知
*/
private void showNotification(){
// 建立一個NotificationManager的引用
NotificationManager notificationManager = (NotificationManager)
this.getSystemService(android.content.Context.NOTIFICATION_SERVICE);
// 定義Notification的各種屬性(顯示圖示,提示文字,通知到達時間)
Notification notification =new Notification(R.drawable.ic_launcher,
"測試系統", 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(HelloActivity.this, HelloActivity.class); // 點選該通知後要跳轉的Activity
//PendingIntent.getActivity(Context context, int requestCode, Intent intent, int flags)
//requestCode和flags都設定為0了,目前Android中還沒有使用到requestCode來做什麼控制,只是預留了這麼一個引數方便於未來的擴充套件,
//但是Flag能就非常有用了,因為系統會通過Flag來識別需要進行的行為。
//目前在Android中有以下flag:
//FLAG_CANCEL_CURRENT:如果當前系統中已經存在一個相同的PendingIntent物件,那麼就將先將已有的PendingIntent取消,然後重新生成一個PendingIntent物件。
//FLAG_NO_CREATE:如果當前系統中不存在相同的PendingIntent物件,系統將不會建立該PendingIntent物件而是直接返回null。
//FLAG_ONE_SHOT:該PendingIntent只作用一次,如果該PendingIntent物件已經觸發過一次,那麼下次再獲取該PendingIntent並且再觸發時,
//系統將會返回一個SendIntentException,在使用這個標誌的時候一定要注意哦。
//FLAG_UPDATE_CURRENT:如果系統中已存在該PendingIntent物件,那麼系統將保留該PendingIntent物件,但是會使用新的Intent來更新之前PendingIntent中
//的Intent物件資料,例如更新Intent中的Extras。這個非常有用,例如之前提到的,我們需要在每次更新之後更新Intent中的Extras資料,
//達到在不同時機傳遞給MainActivity不同的引數,實現不同的效果。
PendingIntent contentItent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
notification.setLatestEventInfo(this, contentTitle, contentText, contentItent);
// 把Notification傳遞給NotificationManager (1為id,要唯一)
notificationManager.notify(1, notification);
}
//刪除通知
private void clearNotification(){
// 啟動後刪除之前我們定義的通知
NotificationManager notificationManager = (NotificationManager) this
.getSystemService(NOTIFICATION_SERVICE);
notificationManager.cancel(1);
}
}