Notification.MessagingStyle
public
static
class
Notification.MessagingStyle
extends Notification.Style
java.lang.Object | ||
↳ | android.app.Notification.Style | |
↳ | android.app.Notification.MessagingStyle |
Helper class for generating large-format notifications that include multiple back-and-forth messages of varying types between any number of people.
If the platform does not provide large-format notifications, this method has no effect. The user will always see the normal notification view.
If the app is targeting Android Build.VERSION_CODES.P
and above, it is
required to use the Person
class in order to get an optimal rendering of the
notification and its avatars. For conversations involving multiple people, the app should
also make sure that it marks the conversation as a group with
setGroupConversation(boolean)
.
From Android Build.VERSION_CODES.UPSIDE_DOWN_CAKE
, messaging style
notifications that are associated with a valid conversation shortcut
(via Notification.Builder#setShortcutId(String)
) are displayed in a dedicated
conversation section in the shade above non-conversation alerting and silence notifications.
To be a valid conversation shortcut, the shortcut must be a
ShortcutInfo.Builder#setLongLived(boolean)
dynamic or cached sharing shortcut.
This class is a "rebuilder": It attaches to a Builder object and modifies its behavior. Here's an example of how this may be used:
Person user = new Person.Builder().setIcon(userIcon).setName(userName).build(); MessagingStyle style = new MessagingStyle(user) .addMessage(messages[1].getText(), messages[1].getTime(), messages[1].getPerson()) .addMessage(messages[2].getText(), messages[2].getTime(), messages[2].getPerson()) .setGroupConversation(hasMultiplePeople()); Notification noti = new Notification.Builder() .setContentTitle("2 new messages with " + sender.toString()) .setContentText(subject) .setSmallIcon(R.drawable.new_message) .setLargeIcon(aBitmap) .setStyle(style) .build();
Summary
Nested classes | |
---|---|
class |
Notification.MessagingStyle.Message
|
Constants | |
---|---|
int |
MAXIMUM_RETAINED_MESSAGES
The maximum number of messages that will be retained in the Notification itself (the number displayed is up to the platform). |
Inherited fields |
---|
Public constructors | |
---|---|
MessagingStyle(CharSequence userDisplayName)
This constructor is deprecated.
use |
|
MessagingStyle(Person user)
|
Public methods | |
---|---|
Notification.MessagingStyle
|
addHistoricMessage(Notification.MessagingStyle.Message message)
Adds a |
Notification.MessagingStyle
|
addMessage(CharSequence text, long timestamp, CharSequence sender)
This method was deprecated
in API level 28.
use |
Notification.MessagingStyle
|
addMessage(Notification.MessagingStyle.Message message)
Adds a |
Notification.MessagingStyle
|
addMessage(CharSequence text, long timestamp, Person sender)
Adds a message for display by this notification. |
CharSequence
|
getConversationTitle()
Return the title to be displayed on this conversation. |
List<Notification.MessagingStyle.Message>
|
getHistoricMessages()
Gets the list of historic |
List<Notification.MessagingStyle.Message>
|
getMessages()
Gets the list of |
Person
|
getUser()
|
CharSequence
|
getUserDisplayName()
This method was deprecated
in API level 28.
use |
boolean
|
isGroupConversation()
Returns |
Notification.MessagingStyle
|
setConversationTitle(CharSequence conversationTitle)
Sets the title to be displayed on this conversation. |
Notification.MessagingStyle
|
setGroupConversation(boolean isGroupConversation)
Sets whether this conversation notification represents a group. |
Inherited methods | |
---|---|
Constants
MAXIMUM_RETAINED_MESSAGES
public static final int MAXIMUM_RETAINED_MESSAGES
The maximum number of messages that will be retained in the Notification itself (the number displayed is up to the platform).
Constant Value: 25 (0x00000019)
Public constructors
MessagingStyle
public MessagingStyle (CharSequence userDisplayName)
This constructor is deprecated.
use MessagingStyle(Person)
Parameters | |
---|---|
userDisplayName |
CharSequence : Required - the name to be displayed for any replies sent by the
user before the posting app reposts the notification with those messages after they've
been actually sent and in previous messages sent by the user added in
addMessage(android.app.Notification.MessagingStyle.Message)
This value cannot be null . |
MessagingStyle
public MessagingStyle (Person user)
Parameters | |
---|---|
user |
Person : Required - The person displayed for any messages that are sent by the
user. Any messages added with addMessage(android.app.Notification.MessagingStyle.Message)
who don't have a Person associated with it will be displayed as if they were sent
by this user. The user also needs to have a valid name associated with it, which is
enforced starting in Android Build.VERSION_CODES.P .
This value cannot be null . |
Public methods
addHistoricMessage
public Notification.MessagingStyle addHistoricMessage (Notification.MessagingStyle.Message message)
Adds a Message
for historic context in this notification.
Messages should be added as historic if they are not the main subject of the
notification but may give context to a conversation. The system may choose to present
them only when relevant, e.g. when replying to a message through a RemoteInput
.
The messages should be added in chronologic order, i.e. the oldest first, the newest last.
Parameters | |
---|---|
message |
Notification.MessagingStyle.Message : The historic Message to be added |
Returns | |
---|---|
Notification.MessagingStyle |
this object for method chaining |
addMessage
public Notification.MessagingStyle addMessage (CharSequence text, long timestamp, CharSequence sender)
This method was deprecated
in API level 28.
use addMessage(java.lang.CharSequence, long, android.app.Person)
Adds a message for display by this notification. Convenience call for a simple
Message
in addMessage(android.app.Notification.MessagingStyle.Message)
.
Parameters | |
---|---|
text |
CharSequence : A CharSequence to be displayed as the message content |
timestamp |
long : Time in milliseconds at which the message arrived |
sender |
CharSequence : A CharSequence to be used for displaying the name of the
sender. Should be null for messages by the current user, in which case
the platform will insert getUserDisplayName() .
Should be unique amongst all individuals in the conversation, and should be
consistent during re-posts of the notification. |
Returns | |
---|---|
Notification.MessagingStyle |
this object for method chaining |
addMessage
public Notification.MessagingStyle addMessage (Notification.MessagingStyle.Message message)
Adds a Message
for display in this notification.
The messages should be added in chronologic order, i.e. the oldest first, the newest last.
Multiple Messages in a row with the same timestamp and sender may be grouped as a single message. This means an app should represent a message that has both an image and text as two Message objects, one with the image (and fallback text), and the other with the message text. For consistency, a text message (if any) should be provided after Uri content.
Parameters | |
---|---|
message |
Notification.MessagingStyle.Message : The Message to be displayed |
Returns | |
---|---|
Notification.MessagingStyle |
this object for method chaining |
addMessage
public Notification.MessagingStyle addMessage (CharSequence text, long timestamp, Person sender)
Adds a message for display by this notification. Convenience call for a simple
Message
in addMessage(android.app.Notification.MessagingStyle.Message)
.
Parameters | |
---|---|
text |
CharSequence : A CharSequence to be displayed as the message content
This value cannot be null . |
timestamp |
long : Time in milliseconds at which the message arrived |
sender |
Person : The Person who sent the message.
Should be null for messages by the current user, in which case
the platform will insert the user set in MessagingStyle(Person) . |
Returns | |
---|---|
Notification.MessagingStyle |
this object for method chaining |
getConversationTitle
public CharSequence getConversationTitle ()
Return the title to be displayed on this conversation. May return null
.
Returns | |
---|---|
CharSequence |
getHistoricMessages
public List<Notification.MessagingStyle.Message> getHistoricMessages ()
Gets the list of historic Message
s in the notification.
Returns | |
---|---|
List<Notification.MessagingStyle.Message> |
getMessages
public List<Notification.MessagingStyle.Message> getMessages ()
Gets the list of Message
objects that represent the notification.
Returns | |
---|---|
List<Notification.MessagingStyle.Message> |
getUser
public Person getUser ()
Returns | |
---|---|
Person |
the user to be displayed for any replies sent by the user
This value cannot be null . |
getUserDisplayName
public CharSequence getUserDisplayName ()
This method was deprecated
in API level 28.
use getUser()
instead
Returns the name to be displayed for any replies sent by the user
Returns | |
---|---|
CharSequence |
isGroupConversation
public boolean isGroupConversation ()
Returns true
if this notification represents a group conversation, otherwise
false
.
If the application that generated this MessagingStyle
targets an SDK version
less than Build.VERSION_CODES#P
, this method becomes dependent on whether or
not the conversation title is set; returning true
if the conversation title is
a non-null value, or false
otherwise. From Build.VERSION_CODES#P
forward,
this method returns what's set by setGroupConversation(boolean)
allowing for
named, non-group conversations.
Returns | |
---|---|
boolean |
See also:
setConversationTitle
public Notification.MessagingStyle setConversationTitle (CharSequence conversationTitle)
Sets the title to be displayed on this conversation. May be set to null
.
Starting in Build.VERSION_CODES#R
, this conversation title will be ignored
if a valid shortcutId is added via Notification.Builder#setShortcutId(String)
.
In this case, ShortcutInfo#getLongLabel()
(or, if missing,
ShortcutInfo#getShortLabel()
) will be shown as the conversation title
instead.
This API's behavior was changed in SDK version Build.VERSION_CODES#P
. If your
application's target version is less than Build.VERSION_CODES#P
, setting a
conversation title to a non-null value will make isGroupConversation()
return
true
and passing null
will make it return false
. In
Build.VERSION_CODES#P
and beyond, use setGroupConversation(boolean)
to set group conversation status.
Parameters | |
---|---|
conversationTitle |
CharSequence : Title displayed for this conversation
This value may be null . |
Returns | |
---|---|
Notification.MessagingStyle |
this object for method chaining |
setGroupConversation
public Notification.MessagingStyle setGroupConversation (boolean isGroupConversation)
Sets whether this conversation notification represents a group. If the app is targeting
Android P, this is required if the app wants to display the largeIcon set with
Notification.Builder#setLargeIcon(Bitmap)
, otherwise it will be hidden.
Parameters | |
---|---|
isGroupConversation |
boolean : true if the conversation represents a group,
false otherwise. |
Returns | |
---|---|
Notification.MessagingStyle |
this object for method chaining |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2024-07-18 UTC.