溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Android 學(xué)習(xí)筆記--android——Notification

發(fā)布時(shí)間:2020-06-11 12:08:51 來(lái)源:網(wǎng)絡(luò) 閱讀:333 作者:Samuel_humg 欄目:移動(dòng)開發(fā)


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

向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI