我研究了這個,發現addAction (int icon, CharSequence title, PendingIntent intent)
已被棄用,所以我用addAction (Notification.Action action)
。在這兩種情況下,圖標都看不到。圖標沒有顯示在Android的通知中nougat
NotificationCompat.Action action = new NotificationCompat.Action.Builder(R.drawable.ic_share, "", pendingIntent).build();
notificationBuilder.addAction(action);
的文字似乎是雖然工作,但我已經離開了空白,因此有主圖像,其中圖標應該顯示