public final class NotificationCompatExtras extends Object
NotificationCompat
for backwards compatibility.Modifier and Type | Field and Description |
---|---|
static String |
EXTRA_ACTION_EXTRAS
Extras key used internally by
NotificationCompat to store the value of
the Notification.extras field before it was available. |
static String |
EXTRA_GROUP_KEY
Extras key used internally by
NotificationCompat to store the value set
by Notification.Builder.setGroup(java.lang.String) before it was available. |
static String |
EXTRA_GROUP_SUMMARY
Extras key used internally by
NotificationCompat to store the value set
by Notification.Builder.setGroupSummary(boolean) before it was available. |
static String |
EXTRA_LOCAL_ONLY
Extras key used internally by
NotificationCompat to store the value of
the Notification.FLAG_LOCAL_ONLY field before it was available. |
static String |
EXTRA_REMOTE_INPUTS
Extras key used internally by
NotificationCompat to store the value of
the Notification.Action.getRemoteInputs() before the field
was available. |
static String |
EXTRA_SORT_KEY
Extras key used internally by
NotificationCompat to store the value set
by Notification.Builder.setSortKey(java.lang.String) before it was available. |
public static final String EXTRA_LOCAL_ONLY
NotificationCompat
to store the value of
the Notification.FLAG_LOCAL_ONLY
field before it was available.
If possible, use NotificationCompat.getLocalOnly(android.app.Notification)
to access this field.public static final String EXTRA_GROUP_KEY
NotificationCompat
to store the value set
by Notification.Builder.setGroup(java.lang.String)
before it was available.
If possible, use NotificationCompat.getGroup(android.app.Notification)
to access this value.public static final String EXTRA_GROUP_SUMMARY
NotificationCompat
to store the value set
by Notification.Builder.setGroupSummary(boolean)
before it was available.
If possible, use NotificationCompat.isGroupSummary(android.app.Notification)
to access this value.public static final String EXTRA_SORT_KEY
NotificationCompat
to store the value set
by Notification.Builder.setSortKey(java.lang.String)
before it was available.
If possible, use NotificationCompat.getSortKey(android.app.Notification)
to access this value.public static final String EXTRA_ACTION_EXTRAS
NotificationCompat
to store the value of
the Notification.extras
field before it was available.
If possible, use NotificationCompat.getAction(android.app.Notification, int)
to access this field.public static final String EXTRA_REMOTE_INPUTS
NotificationCompat
to store the value of
the Notification.Action.getRemoteInputs()
before the field
was available.
If possible, use {@link NotificationCompat.Action#getRemoteInputs to access this field.