Searched defs:isGroupConversation (Results 1 - 2 of 2) sorted by relevance

/frameworks/support/compat/src/main/java/androidx/core/app/
H A DNotificationCompat.java415 public static final String EXTRA_IS_GROUP_CONVERSATION = "android.isGroupConversation";
2216 * conversation title to a non-null value will make {@link #isGroupConversation()} return
2302 * @param isGroupConversation {@code true} if the conversation represents a group,
2306 public MessagingStyle setGroupConversation(boolean isGroupConversation) { argument
2307 mIsGroupConversation = isGroupConversation;
2326 public boolean isGroupConversation() { method in class:NotificationCompat.MessagingStyle
2327 // When target SDK version is < P and the app didn't explicitly set isGroupConversation,
2375 setGroupConversation(isGroupConversation());
2387 if (isGroupConversation() || Build.VERSION.SDK_INT >= 28) {
/frameworks/base/core/java/android/app/
H A DNotification.java1191 public static final String EXTRA_IS_GROUP_CONVERSATION = "android.isGroupConversation";
6712 * conversation title to a non-null value will make {@link #isGroupConversation()} return
6830 * @param isGroupConversation {@code true} if the conversation represents a group,
6834 public MessagingStyle setGroupConversation(boolean isGroupConversation) { argument
6835 mIsGroupConversation = isGroupConversation;
6852 public boolean isGroupConversation() { method in class:Notification.MessagingStyle
7064 isOneToOne = !isGroupConversation();

Completed in 41 milliseconds