您好,登錄后才能下訂單哦!
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
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。