Notification 相關設置以及兼容性

關於Android 的系統通知有時候會收不到的狀況,以下給出一些兼容性的設置,代碼以下:android

  /** 
     * 程序通知,覆蓋start
     * 通知欄相關屬性設置 */
  @SuppressLint("NewApi")
  private void setNotification() { NotificationManager notificationManager = (NotificationManager) this .getSystemService(android.content.Context.NOTIFICATION_SERVICE); // 設置通知的事件消息 CharSequence contentTitle = getString("標題"); // 通知欄標題 CharSequence contentText = getString("內容"); // 通知欄內容 Intent notificationIntent = new Intent(); notificationIntent.addCategory(Intent.CATEGORY_LAUNCHER); notificationIntent.setClass(this, MainActivity.class); notificationIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED); PendingIntent contentItent = PendingIntent.getActivity(this, 0, notificationIntent, 0); //如下針對不一樣版本的兼容設置 if (android.os.Build.VERSION.SDK_INT > 11) { //notification.builder Builder builder = new Notification.Builder(this); builder.setContentIntent(contentItent).setSmallIcon(R.drawable.ic_noti) //設置狀態欄裏面的圖標(小圖標)                        .setLargeIcon(BitmapFactory.decodeResource(this.getResources(), R.drawable.ic_notification))//下拉列表裏面的圖標(大圖標)           .setTicker(contentText) //設置狀態欄的顯示的信息   .setWhen(System.currentTimeMillis()) //設置時間發生時間   .setAutoCancel(false) //設置能夠清除   .setOngoing(true)   .setContentTitle(contentTitle) //設置下拉列表裏的標題   .setContentText(contentText); //設置上下文內容 Notification notification = builder.getNotification(); notification.flags |= Notification.FLAG_ONGOING_EVENT; //將此通知放到通知欄的"Ongoing"即"正在運行"組中 notification.flags |= Notification.FLAG_NO_CLEAR; //代表在點擊了通知欄中的"清除通知"後,此通知不清除,常常與FLAG_ONGOING_EVENT一塊兒使用 notification.defaults = Notification.DEFAULT_LIGHTS; notificationManager.notify(0, notification); }else { Notification notification = new Notification(
         R.drawable.ic_notification, getString(R.string.app_name),   System.currentTimeMillis()); notification.flags
|= Notification.FLAG_ONGOING_EVENT; // 將此通知放到通知欄的"Ongoing"即"正在運行"組中 notification.flags |= Notification.FLAG_NO_CLEAR; // 代表在點擊了通知欄中的"清除通知"後,此通知不清除,常常與FLAG_ONGOING_EVENT一塊兒使用 notification.defaults = Notification.DEFAULT_LIGHTS; notification.setLatestEventInfo(this, contentTitle, contentText, contentItent); // 把Notification傳遞給NotificationManager notificationManager.notify(0, notification); } }
相關文章
相關標籤/搜索