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

/frameworks/base/core/java/android/app/
H A DNotificationChannelGroup.java38 public final class NotificationChannelGroup implements Parcelable { class in inherits:Parcelable
41 * The maximum length for text fields in a NotificationChannelGroup. Fields will be truncated at
68 public NotificationChannelGroup(String id, CharSequence name) { method in class:NotificationChannelGroup
76 protected NotificationChannelGroup(Parcel in) { method in class:NotificationChannelGroup
234 public static final Creator<NotificationChannelGroup> CREATOR =
235 new Creator<NotificationChannelGroup>() {
237 public NotificationChannelGroup createFromParcel(Parcel in) {
238 return new NotificationChannelGroup(in);
242 public NotificationChannelGroup[] newArray(int size) {
243 return new NotificationChannelGroup[siz
[all...]

Completed in 33 milliseconds