/* * Copyright (C) 2012 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package android.support.v4.app; import static android.support.v4.app.NotificationCompat.DEFAULT_SOUND; import static android.support.v4.app.NotificationCompat.DEFAULT_VIBRATE; import static android.support.v4.app.NotificationCompat.FLAG_GROUP_SUMMARY; import static android.support.v4.app.NotificationCompat.GROUP_ALERT_ALL; import static android.support.v4.app.NotificationCompat.GROUP_ALERT_CHILDREN; import static android.support.v4.app.NotificationCompat.GROUP_ALERT_SUMMARY; import android.app.Notification; import android.app.PendingIntent; import android.app.RemoteInput; import android.content.Context; import android.graphics.Bitmap; import android.net.Uri; import android.os.Bundle; import android.support.annotation.RequiresApi; import android.widget.RemoteViews; import java.util.ArrayList; import java.util.List; @RequiresApi(24) class NotificationCompatApi24 { public static class Builder implements NotificationBuilderWithBuilderAccessor, NotificationBuilderWithActions { private Notification.Builder b; private int mGroupAlertBehavior; public Builder(Context context, Notification n, CharSequence contentTitle, CharSequence contentText, CharSequence contentInfo, RemoteViews tickerView, int number, PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon, int progressMax, int progress, boolean progressIndeterminate, boolean showWhen, boolean useChronometer, int priority, CharSequence subText, boolean localOnly, String category, ArrayList people, Bundle extras, int color, int visibility, Notification publicVersion, String groupKey, boolean groupSummary, String sortKey, CharSequence[] remoteInputHistory, RemoteViews contentView, RemoteViews bigContentView, RemoteViews headsUpContentView, int groupAlertBehavior) { b = new Notification.Builder(context) .setWhen(n.when) .setShowWhen(showWhen) .setSmallIcon(n.icon, n.iconLevel) .setContent(n.contentView) .setTicker(n.tickerText, tickerView) .setSound(n.sound, n.audioStreamType) .setVibrate(n.vibrate) .setLights(n.ledARGB, n.ledOnMS, n.ledOffMS) .setOngoing((n.flags & Notification.FLAG_ONGOING_EVENT) != 0) .setOnlyAlertOnce((n.flags & Notification.FLAG_ONLY_ALERT_ONCE) != 0) .setAutoCancel((n.flags & Notification.FLAG_AUTO_CANCEL) != 0) .setDefaults(n.defaults) .setContentTitle(contentTitle) .setContentText(contentText) .setSubText(subText) .setContentInfo(contentInfo) .setContentIntent(contentIntent) .setDeleteIntent(n.deleteIntent) .setFullScreenIntent(fullScreenIntent, (n.flags & Notification.FLAG_HIGH_PRIORITY) != 0) .setLargeIcon(largeIcon) .setNumber(number) .setUsesChronometer(useChronometer) .setPriority(priority) .setProgress(progressMax, progress, progressIndeterminate) .setLocalOnly(localOnly) .setExtras(extras) .setGroup(groupKey) .setGroupSummary(groupSummary) .setSortKey(sortKey) .setCategory(category) .setColor(color) .setVisibility(visibility) .setPublicVersion(publicVersion) .setRemoteInputHistory(remoteInputHistory); if (contentView != null) { b.setCustomContentView(contentView); } if (bigContentView != null) { b.setCustomBigContentView(bigContentView); } if (headsUpContentView != null) { b.setCustomHeadsUpContentView(headsUpContentView); } for (String person: people) { b.addPerson(person); } mGroupAlertBehavior = groupAlertBehavior; } @Override public void addAction(NotificationCompatBase.Action action) { NotificationCompatApi24.addAction(b, action); } @Override public Notification.Builder getBuilder() { return b; } @Override public Notification build() { Notification notification = b.build(); if (mGroupAlertBehavior != GROUP_ALERT_ALL) { // if is summary and only children should alert if (notification.getGroup() != null && (notification.flags & FLAG_GROUP_SUMMARY) != 0 && mGroupAlertBehavior == GROUP_ALERT_CHILDREN) { removeSoundAndVibration(notification); } // if is group child and only summary should alert if (notification.getGroup() != null && (notification.flags & FLAG_GROUP_SUMMARY) == 0 && mGroupAlertBehavior == GROUP_ALERT_SUMMARY) { removeSoundAndVibration(notification); } } return notification; } private void removeSoundAndVibration(Notification notification) { notification.sound = null; notification.vibrate = null; notification.defaults &= ~DEFAULT_SOUND; notification.defaults &= ~DEFAULT_VIBRATE; } } public static void addMessagingStyle(NotificationBuilderWithBuilderAccessor b, CharSequence userDisplayName, CharSequence conversationTitle, List texts, List timestamps, List senders, List dataMimeTypes, List dataUris) { Notification.MessagingStyle style = new Notification.MessagingStyle(userDisplayName) .setConversationTitle(conversationTitle); for (int i = 0; i < texts.size(); i++) { Notification.MessagingStyle.Message message = new Notification.MessagingStyle.Message( texts.get(i), timestamps.get(i), senders.get(i)); if (dataMimeTypes.get(i) != null) { message.setData(dataMimeTypes.get(i), dataUris.get(i)); } style.addMessage(message); } style.setBuilder(b.getBuilder()); } public static void addAction(Notification.Builder b, NotificationCompatBase.Action action) { Notification.Action.Builder actionBuilder = new Notification.Action.Builder( action.getIcon(), action.getTitle(), action.getActionIntent()); if (action.getRemoteInputs() != null) { for (RemoteInput remoteInput : RemoteInputCompatApi20.fromCompat( action.getRemoteInputs())) { actionBuilder.addRemoteInput(remoteInput); } } Bundle actionExtras; if (action.getExtras() != null) { actionExtras = new Bundle(action.getExtras()); } else { actionExtras = new Bundle(); } actionExtras.putBoolean(NotificationCompatJellybean.EXTRA_ALLOW_GENERATED_REPLIES, action.getAllowGeneratedReplies()); actionBuilder.addExtras(actionExtras); actionBuilder.setAllowGeneratedReplies(action.getAllowGeneratedReplies()); b.addAction(actionBuilder.build()); } }