Android NotificationManager與Notification(通知欄) 的使用

來源:互聯網
上載者:User

有時候我們在後台運行程式,但是需要給使用者一個提示,在這個時候就需要使用提示資訊了,即在提示欄顯示一個表徵圖或者是文字提醒使用者。下面是實現的代碼:

 

代碼

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

 

這個屬性可以設定為不清除或者是加入正在啟動並執行列表。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.