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

/frameworks/base/core/java/android/app/
H A DNotificationChannel.java45 public final class NotificationChannel implements Parcelable { class in inherits:Parcelable
55 * The maximum length for text fields in a NotificationChannel. Fields will be truncated at this
163 public NotificationChannel(String id, CharSequence name, @Importance int importance) { method in class:NotificationChannel
172 protected NotificationChannel(Parcel in) { method in class:NotificationChannel
833 public static final Creator<NotificationChannel> CREATOR = new Creator<NotificationChannel>() {
835 public NotificationChannel createFromParcel(Parcel in) {
836 return new NotificationChannel(in);
840 public NotificationChannel[] newArray(int size) {
841 return new NotificationChannel[siz
[all...]

Completed in 58 milliseconds