Searched refs:ActivatableNotificationView (Results 1 – 14 of 14) sorted by relevance
25 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;42 private final ActivatableNotificationView[] mFirstInSectionViews;43 private final ActivatableNotificationView[] mLastInSectionViews;44 private final ActivatableNotificationView[] mTmpFirstInSectionViews;45 private final ActivatableNotificationView[] mTmpLastInSectionViews;55 mFirstInSectionViews = new ActivatableNotificationView[NUM_SECTIONS]; in NotificationRoundnessManager()56 mLastInSectionViews = new ActivatableNotificationView[NUM_SECTIONS]; in NotificationRoundnessManager()57 mTmpFirstInSectionViews = new ActivatableNotificationView[NUM_SECTIONS]; in NotificationRoundnessManager()58 mTmpLastInSectionViews = new ActivatableNotificationView[NUM_SECTIONS]; in NotificationRoundnessManager()82 private void updateView(ActivatableNotificationView view, boolean animate) { in updateView()[all …]
32 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;195 ActivatableNotificationView firstChild, in updateFirstAndLastViewsInSections()196 ActivatableNotificationView lastChild) { in updateFirstAndLastViewsInSections()198 ActivatableNotificationView previousLastHighPriorityChild = in updateFirstAndLastViewsInSections()200 ActivatableNotificationView previousFirstLowPriorityChild = in updateFirstAndLastViewsInSections()202 ActivatableNotificationView lastHighPriorityChild = getLastHighPriorityChild(); in updateFirstAndLastViewsInSections()203 ActivatableNotificationView firstLowPriorityChild = getFirstLowPriorityChild(); in updateFirstAndLastViewsInSections()235 private ActivatableNotificationView getFirstLowPriorityChild() { in getFirstLowPriorityChild()244 private ActivatableNotificationView getLastHighPriorityChild() { in getLastHighPriorityChild()245 ActivatableNotificationView lastChildBeforeGap = null; in getLastHighPriorityChild()
29 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;43 private ActivatableNotificationView mFirstVisibleChild;44 private ActivatableNotificationView mLastVisibleChild;194 public ActivatableNotificationView getFirstVisibleChild() { in getFirstVisibleChild()198 public ActivatableNotificationView getLastVisibleChild() { in getLastVisibleChild()202 public void setFirstVisibleChild(ActivatableNotificationView child) { in setFirstVisibleChild()206 public void setLastVisibleChild(ActivatableNotificationView child) { in setLastVisibleChild()243 ActivatableNotificationView firstView = getFirstVisibleChild(); in updateBounds()268 ActivatableNotificationView lastView = getLastVisibleChild(); in updateBounds()
30 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;51 private ActivatableNotificationView mActivatedChild;68 private ActivatableNotificationView mLastVisibleBackgroundChild;213 public void setActivatedChild(ActivatableNotificationView activatedChild) { in setActivatedChild()231 public ActivatableNotificationView getActivatedChild() { in getActivatedChild()350 ActivatableNotificationView lastVisibleBackgroundChild) { in setLastVisibleBackgroundChild()354 public ActivatableNotificationView getLastVisibleBackgroundChild() { in getLastVisibleBackgroundChild()
33 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;39 public class SectionHeaderView extends ActivatableNotificationView {
117 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;643 ActivatableNotificationView firstChild = getFirstChildWithBackground(); in getWakeUpHeight()2616 private ActivatableNotificationView getLastChildWithBackground() {2620 if (child.getVisibility() != View.GONE && child instanceof ActivatableNotificationView2622 return (ActivatableNotificationView) child;2629 private ActivatableNotificationView getFirstChildWithBackground() {2633 if (child.getVisibility() != View.GONE && child instanceof ActivatableNotificationView2635 return (ActivatableNotificationView) child;3196 ActivatableNotificationView previousFirstChild =3198 ActivatableNotificationView previousLastChild =[all …]
18 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;29 ActivatableNotificationView.OnActivatedListener {
44 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;62 public class NotificationShelf extends ActivatableNotificationView implements272 ActivatableNotificationView previousRow = null; in updateAppearance()277 if (!(child instanceof ActivatableNotificationView) in updateAppearance()282 ActivatableNotificationView row = (ActivatableNotificationView) child; in updateAppearance()492 private int updateNotificationClipHeight(ActivatableNotificationView row,
47 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;114 ActivatableNotificationView view = mock(ActivatableNotificationView.class); in onActivatedMetrics()
21 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;
70 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;410 public void onActivated(ActivatableNotificationView view) { in onActivated()420 ActivatableNotificationView previousView = mNotificationPanel.getActivatedChild(); in onActivated()427 public void onActivationReset(ActivatableNotificationView view) { in onActivationReset()
92 import com.android.systemui.statusbar.notification.row.ActivatableNotificationView;3439 public ActivatableNotificationView getActivatedChild() { in getActivatedChild()3443 public void setActivatedChild(ActivatableNotificationView o) { in setActivatedChild()
51 public abstract class ActivatableNotificationView extends ExpandableOutlineView { class163 public ActivatableNotificationView(Context context, AttributeSet attrs) { in ActivatableNotificationView() method in ActivatableNotificationView1007 public boolean hasSameBgColor(ActivatableNotificationView otherView) { in hasSameBgColor()1048 void onActivated(ActivatableNotificationView view); in onActivated()1049 void onActivationReset(ActivatableNotificationView view); in onActivationReset()
117 public class ExpandableNotificationRow extends ActivatableNotificationView