Loading api/current.txt +2 −2 Original line number Diff line number Diff line Loading @@ -4795,7 +4795,7 @@ package android.app { method public android.graphics.drawable.Icon getLargeIcon(); method public android.graphics.drawable.Icon getSmallIcon(); method public java.lang.String getSortKey(); method public android.app.Notification.Topic[] getTopics(); method public android.app.Notification.Topic getTopic(); method public void writeToParcel(android.os.Parcel, int); field public static final android.media.AudioAttributes AUDIO_ATTRIBUTES_DEFAULT; field public static final java.lang.String CATEGORY_ALARM = "alarm"; Loading Loading @@ -4960,7 +4960,6 @@ package android.app { method public android.app.Notification.Builder addAction(android.app.Notification.Action); method public android.app.Notification.Builder addExtras(android.os.Bundle); method public android.app.Notification.Builder addPerson(java.lang.String); method public android.app.Notification.Builder addTopic(android.app.Notification.Topic); method public android.app.Notification build(); method public android.app.Notification.Builder extend(android.app.Notification.Extender); method public android.os.Bundle getExtras(); Loading Loading @@ -5009,6 +5008,7 @@ package android.app { method public android.app.Notification.Builder setSubText(java.lang.CharSequence); method public android.app.Notification.Builder setTicker(java.lang.CharSequence); method public deprecated android.app.Notification.Builder setTicker(java.lang.CharSequence, android.widget.RemoteViews); method public android.app.Notification.Builder setTopic(android.app.Notification.Topic); method public android.app.Notification.Builder setUsesChronometer(boolean); method public android.app.Notification.Builder setVibrate(long[]); method public android.app.Notification.Builder setVisibility(int); api/system-current.txt +2 −2 Original line number Diff line number Diff line Loading @@ -4913,7 +4913,7 @@ package android.app { method public android.graphics.drawable.Icon getLargeIcon(); method public android.graphics.drawable.Icon getSmallIcon(); method public java.lang.String getSortKey(); method public android.app.Notification.Topic[] getTopics(); method public android.app.Notification.Topic getTopic(); method public void writeToParcel(android.os.Parcel, int); field public static final android.media.AudioAttributes AUDIO_ATTRIBUTES_DEFAULT; field public static final java.lang.String CATEGORY_ALARM = "alarm"; Loading Loading @@ -5078,7 +5078,6 @@ package android.app { method public android.app.Notification.Builder addAction(android.app.Notification.Action); method public android.app.Notification.Builder addExtras(android.os.Bundle); method public android.app.Notification.Builder addPerson(java.lang.String); method public android.app.Notification.Builder addTopic(android.app.Notification.Topic); method public android.app.Notification build(); method public android.app.Notification.Builder extend(android.app.Notification.Extender); method public android.os.Bundle getExtras(); Loading Loading @@ -5127,6 +5126,7 @@ package android.app { method public android.app.Notification.Builder setSubText(java.lang.CharSequence); method public android.app.Notification.Builder setTicker(java.lang.CharSequence); method public deprecated android.app.Notification.Builder setTicker(java.lang.CharSequence, android.widget.RemoteViews); method public android.app.Notification.Builder setTopic(android.app.Notification.Topic); method public android.app.Notification.Builder setUsesChronometer(boolean); method public android.app.Notification.Builder setVibrate(long[]); method public android.app.Notification.Builder setVisibility(int); core/java/android/app/Notification.java +20 −33 Original line number Diff line number Diff line Loading @@ -1466,10 +1466,10 @@ public class Notification implements Parcelable }; } private Topic[] topics; private Topic topic; public Topic[] getTopics() { return topics; public Topic getTopic() { return topic; } /** Loading Loading @@ -1599,7 +1599,9 @@ public class Notification implements Parcelable color = parcel.readInt(); topics = parcel.createTypedArray(Topic.CREATOR); // may be null if (parcel.readInt() != 0) { topic = Topic.CREATOR.createFromParcel(parcel); } } @Override Loading Loading @@ -1700,11 +1702,8 @@ public class Notification implements Parcelable that.color = this.color; if (this.topics != null) { that.topics = new Topic[this.topics.length]; for(int i=0; i<this.topics.length; i++) { that.topics[i] = this.topics[i].clone(); } if (this.topic != null) { that.topic = this.topic.clone(); } if (!heavy) { Loading Loading @@ -1878,7 +1877,12 @@ public class Notification implements Parcelable parcel.writeInt(color); parcel.writeTypedArray(topics, 0); // null ok if (topic != null) { parcel.writeInt(1); topic.writeToParcel(parcel, 0); } else { parcel.writeInt(0); } } /** Loading Loading @@ -2008,17 +2012,9 @@ public class Notification implements Parcelable sb.append(" publicVersion="); sb.append(publicVersion.toString()); } if (topics != null) { sb.append("topics=["); int N = topics.length; if (N > 0) { for (int i = 0; i < N-1; i++) { sb.append(topics[i]); sb.append(','); } sb.append(topics[N-1]); } sb.append("]"); if (topic != null) { sb.append("topic="); sb.append(topic.toString()); } sb.append(")"); return sb.toString(); Loading Loading @@ -2136,7 +2132,6 @@ public class Notification implements Parcelable private ArrayList<String> mPersonList = new ArrayList<String>(); private NotificationColorUtil mColorUtil; private boolean mColorUtilInited = false; private List<Topic> mTopics = new ArrayList<>(); /** * The user that built the notification originally. Loading Loading @@ -2187,10 +2182,6 @@ public class Notification implements Parcelable Collections.addAll(mPersonList, mN.extras.getStringArray(EXTRA_PEOPLE)); } if (mN.getTopics() != null) { Collections.addAll(mTopics, mN.getTopics()); } String templateClass = mN.extras.getString(EXTRA_TEMPLATE); if (!TextUtils.isEmpty(templateClass)) { final Class<? extends Style> styleClass Loading Loading @@ -2962,15 +2953,15 @@ public class Notification implements Parcelable } /** * Add a topic to this notification. Topics are typically displayed in Notification * Sets the topic of this notification. Topics are typically displayed in Notification * settings. * <p> * Every topic must have an id and a textual label. * * @param topic The topic to add. */ public Builder addTopic(Topic topic) { mTopics.add(topic); public Builder setTopic(Topic topic) { mN.topic = topic; return this; } Loading Loading @@ -3452,10 +3443,6 @@ public class Notification implements Parcelable mN.extras.putStringArray(EXTRA_PEOPLE, mPersonList.toArray(new String[mPersonList.size()])); } if (mTopics.size() > 0) { mN.topics = new Topic[mTopics.size()]; mTopics.toArray(mN.topics); } return mN; } Loading Loading
api/current.txt +2 −2 Original line number Diff line number Diff line Loading @@ -4795,7 +4795,7 @@ package android.app { method public android.graphics.drawable.Icon getLargeIcon(); method public android.graphics.drawable.Icon getSmallIcon(); method public java.lang.String getSortKey(); method public android.app.Notification.Topic[] getTopics(); method public android.app.Notification.Topic getTopic(); method public void writeToParcel(android.os.Parcel, int); field public static final android.media.AudioAttributes AUDIO_ATTRIBUTES_DEFAULT; field public static final java.lang.String CATEGORY_ALARM = "alarm"; Loading Loading @@ -4960,7 +4960,6 @@ package android.app { method public android.app.Notification.Builder addAction(android.app.Notification.Action); method public android.app.Notification.Builder addExtras(android.os.Bundle); method public android.app.Notification.Builder addPerson(java.lang.String); method public android.app.Notification.Builder addTopic(android.app.Notification.Topic); method public android.app.Notification build(); method public android.app.Notification.Builder extend(android.app.Notification.Extender); method public android.os.Bundle getExtras(); Loading Loading @@ -5009,6 +5008,7 @@ package android.app { method public android.app.Notification.Builder setSubText(java.lang.CharSequence); method public android.app.Notification.Builder setTicker(java.lang.CharSequence); method public deprecated android.app.Notification.Builder setTicker(java.lang.CharSequence, android.widget.RemoteViews); method public android.app.Notification.Builder setTopic(android.app.Notification.Topic); method public android.app.Notification.Builder setUsesChronometer(boolean); method public android.app.Notification.Builder setVibrate(long[]); method public android.app.Notification.Builder setVisibility(int);
api/system-current.txt +2 −2 Original line number Diff line number Diff line Loading @@ -4913,7 +4913,7 @@ package android.app { method public android.graphics.drawable.Icon getLargeIcon(); method public android.graphics.drawable.Icon getSmallIcon(); method public java.lang.String getSortKey(); method public android.app.Notification.Topic[] getTopics(); method public android.app.Notification.Topic getTopic(); method public void writeToParcel(android.os.Parcel, int); field public static final android.media.AudioAttributes AUDIO_ATTRIBUTES_DEFAULT; field public static final java.lang.String CATEGORY_ALARM = "alarm"; Loading Loading @@ -5078,7 +5078,6 @@ package android.app { method public android.app.Notification.Builder addAction(android.app.Notification.Action); method public android.app.Notification.Builder addExtras(android.os.Bundle); method public android.app.Notification.Builder addPerson(java.lang.String); method public android.app.Notification.Builder addTopic(android.app.Notification.Topic); method public android.app.Notification build(); method public android.app.Notification.Builder extend(android.app.Notification.Extender); method public android.os.Bundle getExtras(); Loading Loading @@ -5127,6 +5126,7 @@ package android.app { method public android.app.Notification.Builder setSubText(java.lang.CharSequence); method public android.app.Notification.Builder setTicker(java.lang.CharSequence); method public deprecated android.app.Notification.Builder setTicker(java.lang.CharSequence, android.widget.RemoteViews); method public android.app.Notification.Builder setTopic(android.app.Notification.Topic); method public android.app.Notification.Builder setUsesChronometer(boolean); method public android.app.Notification.Builder setVibrate(long[]); method public android.app.Notification.Builder setVisibility(int);
core/java/android/app/Notification.java +20 −33 Original line number Diff line number Diff line Loading @@ -1466,10 +1466,10 @@ public class Notification implements Parcelable }; } private Topic[] topics; private Topic topic; public Topic[] getTopics() { return topics; public Topic getTopic() { return topic; } /** Loading Loading @@ -1599,7 +1599,9 @@ public class Notification implements Parcelable color = parcel.readInt(); topics = parcel.createTypedArray(Topic.CREATOR); // may be null if (parcel.readInt() != 0) { topic = Topic.CREATOR.createFromParcel(parcel); } } @Override Loading Loading @@ -1700,11 +1702,8 @@ public class Notification implements Parcelable that.color = this.color; if (this.topics != null) { that.topics = new Topic[this.topics.length]; for(int i=0; i<this.topics.length; i++) { that.topics[i] = this.topics[i].clone(); } if (this.topic != null) { that.topic = this.topic.clone(); } if (!heavy) { Loading Loading @@ -1878,7 +1877,12 @@ public class Notification implements Parcelable parcel.writeInt(color); parcel.writeTypedArray(topics, 0); // null ok if (topic != null) { parcel.writeInt(1); topic.writeToParcel(parcel, 0); } else { parcel.writeInt(0); } } /** Loading Loading @@ -2008,17 +2012,9 @@ public class Notification implements Parcelable sb.append(" publicVersion="); sb.append(publicVersion.toString()); } if (topics != null) { sb.append("topics=["); int N = topics.length; if (N > 0) { for (int i = 0; i < N-1; i++) { sb.append(topics[i]); sb.append(','); } sb.append(topics[N-1]); } sb.append("]"); if (topic != null) { sb.append("topic="); sb.append(topic.toString()); } sb.append(")"); return sb.toString(); Loading Loading @@ -2136,7 +2132,6 @@ public class Notification implements Parcelable private ArrayList<String> mPersonList = new ArrayList<String>(); private NotificationColorUtil mColorUtil; private boolean mColorUtilInited = false; private List<Topic> mTopics = new ArrayList<>(); /** * The user that built the notification originally. Loading Loading @@ -2187,10 +2182,6 @@ public class Notification implements Parcelable Collections.addAll(mPersonList, mN.extras.getStringArray(EXTRA_PEOPLE)); } if (mN.getTopics() != null) { Collections.addAll(mTopics, mN.getTopics()); } String templateClass = mN.extras.getString(EXTRA_TEMPLATE); if (!TextUtils.isEmpty(templateClass)) { final Class<? extends Style> styleClass Loading Loading @@ -2962,15 +2953,15 @@ public class Notification implements Parcelable } /** * Add a topic to this notification. Topics are typically displayed in Notification * Sets the topic of this notification. Topics are typically displayed in Notification * settings. * <p> * Every topic must have an id and a textual label. * * @param topic The topic to add. */ public Builder addTopic(Topic topic) { mTopics.add(topic); public Builder setTopic(Topic topic) { mN.topic = topic; return this; } Loading Loading @@ -3452,10 +3443,6 @@ public class Notification implements Parcelable mN.extras.putStringArray(EXTRA_PEOPLE, mPersonList.toArray(new String[mPersonList.size()])); } if (mTopics.size() > 0) { mN.topics = new Topic[mTopics.size()]; mTopics.toArray(mN.topics); } return mN; } Loading