android Notification
是顯示在手機(jī)狀態(tài)欄上的通知,具有全局效果的通知
時(shí)效性不強(qiáng)
步驟:
// 獲得系統(tǒng)服務(wù)
NotificationManager mNotificationManager
= (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
// 創(chuàng)建一個(gè)Notification對(duì)象
Notification notification = new Notification(R.drawable.ic_launcher,
"短信來(lái)了", System.currentTimeMillis());
// 設(shè)置點(diǎn)擊事件關(guān)聯(lián)activity
Intent intent = new Intent(this, SecondActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,intent, 0);
// 設(shè)置標(biāo)題跟內(nèi)容
notification.setLatestEventInfo(this, "小麗", "在么", contentIntent);
// 發(fā)送通知
mNotificationManager.notify(0, notification);
// 點(diǎn)擊之后,消失
// notification.flags = Notification.FLAG_AUTO_CANCEL;
// 點(diǎn)擊之后,不會(huì)消失
notification.flags = Notification.FLAG_ONGOING_EVENT;
取消通知:
mNotificationManager.cancel(0);//參數(shù)必須是之前發(fā)送通知的id
成都創(chuàng)新互聯(lián)專(zhuān)業(yè)為企業(yè)提供朝天網(wǎng)站建設(shè)、朝天做網(wǎng)站、朝天網(wǎng)站設(shè)計(jì)、朝天網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)與制作、朝天企業(yè)網(wǎng)站模板建站服務(wù),10年朝天做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。