android實現狀態列添加表徵圖的函數執行個體_Android

來源:互聯網
上載者:User

本文執行個體講述了android實現狀態列添加表徵圖的函數。分享給大家供大家參考。具體如下:

private void showNotification() {  // 建立一個NotificationManager的引用  NotificationManager notificationManager = (NotificationManager)   AutoFile.this.getSystemService(android.content.Context.NOTIFICATION_SERVICE);  // 定義Notification的各種屬性  Notification notification = new Notification(R.drawable.dvd,   "天籟之音播放器", System.currentTimeMillis());  notification.flags |= Notification.FLAG_ONGOING_EVENT; // 將此通知放到通知欄的"Ongoing"即"正在運行"組中  notification.flags |= Notification.FLAG_NO_CLEAR; // 表明在點擊了通知欄中的"清除通知"後,此通知不清除,經常與FLAG_ONGOING_EVENT一起使用  notification.flags |= Notification.FLAG_SHOW_LIGHTS;  notification.defaults = Notification.DEFAULT_LIGHTS;  notification.ledARGB = Color.BLUE;  notification.ledOnMS = 5000;  // 設定通知的事件訊息  CharSequence contentTitle = "天籟之音現正播放……"; // 通知欄標題  CharSequence contentText = "ameyume"; // 通知欄內容  Intent notificationIntent = new Intent(AutoFile.this, MyPlayerService.class); // 點擊該通知後要跳轉的Activity  PendingIntent contentItent = PendingIntent.getActivity(AutoFile.this, 0,   notificationIntent, 0);  notification.setLatestEventInfo(AutoFile.this, contentTitle, contentText,   contentItent);  // 把Notification傳遞給NotificationManager  notificationManager.notify(0, notification); } 

要刪除表徵圖,用以下代碼:

// 啟動後刪除之前我們定義的通知 NotificationManager notificationManager = (NotificationManager) this  .getSystemService(NOTIFICATION_SERVICE); notificationManager.cancel(0);

希望本文所述對大家的Android程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.