Home
last modified time | relevance | path

Searched refs:mAttachedChildren (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationChildrenContainer.java69 private final List<ExpandableNotificationRow> mAttachedChildren = new ArrayList<>(); field in NotificationChildrenContainer
160 Math.min(mAttachedChildren.size(), NUMBER_OF_CHILDREN_WHEN_CHILDREN_EXPANDED); in onLayout()
162 View child = mAttachedChildren.get(i); in onLayout()
203 Math.min(mAttachedChildren.size(), NUMBER_OF_CHILDREN_WHEN_CHILDREN_EXPANDED); in onMeasure()
207 ExpandableNotificationRow child = mAttachedChildren.get(i); in onMeasure()
266 int newIndex = childIndex < 0 ? mAttachedChildren.size() : childIndex; in addNotification()
267 mAttachedChildren.add(newIndex, row); in addNotification()
285 int childIndex = mAttachedChildren.indexOf(row);
286 mAttachedChildren.remove(row);
310 return mAttachedChildren.size();
[all …]