Loading packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java +1 −0 Original line number Diff line number Diff line Loading @@ -913,6 +913,7 @@ public abstract class BaseStatusBar extends SystemUI implements if (wasExpanded) { final NotificationData.Entry newEntry = mNotificationData.findByKey(key); expandView(newEntry, true); newEntry.setUserExpanded(true); } } Loading packages/SystemUI/src/com/android/systemui/statusbar/NotificationData.java +6 −0 Original line number Diff line number Diff line Loading @@ -65,6 +65,12 @@ public class NotificationData { public boolean userExpanded() { return NotificationData.getUserExpanded(row); } /** * Set the flag indicating that this was manually expanded by the user. */ public boolean setUserExpanded(boolean userExpanded) { return NotificationData.setUserExpanded(row, userExpanded); } } private final ArrayList<Entry> mEntries = new ArrayList<Entry>(); private final Comparator<Entry> mEntryCmp = new Comparator<Entry>() { Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java +1 −0 Original line number Diff line number Diff line Loading @@ -913,6 +913,7 @@ public abstract class BaseStatusBar extends SystemUI implements if (wasExpanded) { final NotificationData.Entry newEntry = mNotificationData.findByKey(key); expandView(newEntry, true); newEntry.setUserExpanded(true); } } Loading
packages/SystemUI/src/com/android/systemui/statusbar/NotificationData.java +6 −0 Original line number Diff line number Diff line Loading @@ -65,6 +65,12 @@ public class NotificationData { public boolean userExpanded() { return NotificationData.getUserExpanded(row); } /** * Set the flag indicating that this was manually expanded by the user. */ public boolean setUserExpanded(boolean userExpanded) { return NotificationData.setUserExpanded(row, userExpanded); } } private final ArrayList<Entry> mEntries = new ArrayList<Entry>(); private final Comparator<Entry> mEntryCmp = new Comparator<Entry>() { Loading