Android NotificationManager與Notification(通知欄)的使用:
有時候我們在後台運行程序,但是需要給用戶一個提示,在這個時候就需要使用提示信息了,即在提示欄顯示一個圖標或者是文字提醒用戶。
下面是實現的代碼:
- protected void showNotification(int id) {
- CharSequence from = "定位服務";
- CharSequence message = "正在運行";
- Intent intent = new Intent();
- PendingIntent contentIntent = PendingIntent.getActivity(this, 0,intent, 0);
- notif.icon = id;
- notif.setLatestEventInfo(this, from, message, contentIntent);
- NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
- nm.notify(R.string.app_name, notif);
- }
其中ID表示的是圖片的ID,文字在這裡沒有添加,使用的時候按照添加圖標的方式可以自己添加!
這樣可以更改圖片。
下面這個是刪除提示的代碼:
- void delenot() {
- NotificationManager notificationManager = (NotificationManager) this.getSystemService(NOTIFICATION_SERVICE);
- notificationManager.cancel(R.string.app_name);
- }
這樣我們添加的提示通知,可以清除掉,如果我們不想讓系統清除掉,那麼需要設置相關的屬性:
notif.flags
這個屬性可以設置為不清除或者是加入正在運行的列表。