android Notification
是顯示在手機狀態(tài)欄上的通知,具有全局效果的通知
時效性不強
步驟:
// 獲得系統(tǒng)服務
NotificationManager mNotificationManager
= (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
// 創(chuàng)建一個Notification對象
Notification notification = new Notification(R.drawable.ic_launcher,
"短信來了", System.currentTimeMillis());
// 設置點擊事件關(guān)聯(lián)activity
Intent intent = new Intent(this, SecondActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,intent, 0);
// 設置標題跟內(nèi)容
notification.setLatestEventInfo(this, "小麗", "在么", contentIntent);
// 發(fā)送通知
mNotificationManager.notify(0, notification);
// 點擊之后,消失
// notification.flags = Notification.FLAG_AUTO_CANCEL;
// 點擊之后,不會消失
notification.flags = Notification.FLAG_ONGOING_EVENT;
取消通知:
mNotificationManager.cancel(0);//參數(shù)必須是之前發(fā)送通知的id
成都創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供朝天網(wǎng)站建設、朝天做網(wǎng)站、朝天網(wǎng)站設計、朝天網(wǎng)站制作等企業(yè)網(wǎng)站建設、網(wǎng)頁設計與制作、朝天企業(yè)網(wǎng)站模板建站服務,10年朝天做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡服務。
分享題目:Android學習筆記--android——Notification
地址分享:http://vcdvsql.cn/article32/jhjcpc.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供全網(wǎng)營銷推廣、網(wǎng)站改版、Google、網(wǎng)站建設、虛擬主機、定制網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)