Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DNotificationStackScrollLayout.java42 import com.android.systemui.statusbar.ExpandableNotificationRow;
655 return v instanceof ExpandableNotificationRow in canChildBeExpanded()
656 && ((ExpandableNotificationRow) v).isExpandable(); in canChildBeExpanded()
660 if (v instanceof ExpandableNotificationRow) { in setUserExpandedChild()
661 ((ExpandableNotificationRow) v).setUserExpanded(userExpanded); in setUserExpandedChild()
666 if (v instanceof ExpandableNotificationRow) { in setUserLockedChild()
667 ((ExpandableNotificationRow) v).setUserLocked(userLocked); in setUserLockedChild()
1313 if (view instanceof ExpandableNotificationRow) { in getMaxExpandHeight()
1314 ExpandableNotificationRow row = (ExpandableNotificationRow) view; in getMaxExpandHeight()
1333 if (child instanceof ExpandableNotificationRow) { in updateContentHeight()
[all …]
DStackScrollAlgorithm.java26 import com.android.systemui.statusbar.ExpandableNotificationRow;
480 if (child instanceof ExpandableNotificationRow) { in getMaxAllowedChildHeight()
481 ExpandableNotificationRow row = (ExpandableNotificationRow) child; in getMaxAllowedChildHeight()
792 if (child instanceof ExpandableNotificationRow) {
793 ExpandableNotificationRow row = (ExpandableNotificationRow) child;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DExpandableNotificationRow.java32 public class ExpandableNotificationRow extends ActivatableNotificationView { class
136 public ExpandableNotificationRow(Context context, AttributeSet attrs) { in ExpandableNotificationRow() method in ExpandableNotificationRow
DBaseStatusBar.java109 RecentsComponent.Callbacks, ExpandableNotificationRow.ExpansionLogger,
353 if (parent instanceof ExpandableNotificationRow) {
354 return ((ExpandableNotificationRow) parent).getStatusBarNotification().getKey();
836 private void inflateGuts(ExpandableNotificationRow row) { in inflateGuts()
915 if (!(v instanceof ExpandableNotificationRow)) { in getNotificationLongClicker()
923 inflateGuts((ExpandableNotificationRow) v); in getNotificationLongClicker()
1320 ExpandableNotificationRow row;
1341 row = (ExpandableNotificationRow) inflater.inflate(R.layout.status_bar_notification_row,
DNotificationData.java44 public ExpandableNotificationRow row; // the outer expanded view
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DExpandHelper.java36 import com.android.systemui.statusbar.ExpandableNotificationRow;
501 if (!(v instanceof ExpandableNotificationRow)) { in startExpanding()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DPhoneStatusBar.java140 import com.android.systemui.statusbar.ExpandableNotificationRow;
496 private ExpandableNotificationRow mDraggedDownRow;
1463 ArrayList<ExpandableNotificationRow> toShow = new ArrayList<>(activeNotifications.size()); in updateNotificationShade()
1492 if (!toShow.contains(child) && child instanceof ExpandableNotificationRow) { in updateNotificationShade()
1513 if (!(child instanceof ExpandableNotificationRow)) { in updateNotificationShade()
4017 ExpandableNotificationRow row = null;
4018 if (expandView instanceof ExpandableNotificationRow) {
4019 row = (ExpandableNotificationRow) expandView;