Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationListContainer.java29 import com.android.systemui.statusbar.notification.row.ExpandableView;
35 public interface NotificationListContainer extends ExpandableView.OnHeightChangedListener,
50 void changeViewPosition(ExpandableView child, int newIndex); in changeViewPosition()
57 void notifyGroupChildAdded(ExpandableView row); in notifyGroupChildAdded()
64 void notifyGroupChildRemoved(ExpandableView row, ViewGroup childrenContainer); in notifyGroupChildRemoved()
71 void generateAddAnimation(ExpandableView child, boolean fromMoreCard); in generateAddAnimation()
DStackScrollAlgorithm.java30 import com.android.systemui.statusbar.notification.row.ExpandableView;
118 ExpandableView child = (ExpandableView) mHostView.getChildAt(i); in resetChildViewStates()
127 ExpandableView v = algorithmState.visibleChildren.get(i); in getNotificationChildrenStates()
140 ExpandableView child = algorithmState.visibleChildren.get(i); in updateSpeedBumpState()
166 ExpandableView child = algorithmState.visibleChildren.get(i); in updateClipping()
221 ExpandableView child = algorithmState.visibleChildren.get(i); in updateDimmedActivatedHideSensitive()
257 ExpandableView lastView = null; in initAlgorithmState()
272 ExpandableView v = (ExpandableView) hostView.getChildAt(i); in initAlgorithmState()
353 ExpandableView v) { in updateNotGoneIndex()
415 ExpandableView child = algorithmState.visibleChildren.get(i); in updateChild()
[all …]
DStackStateAnimator.java32 import com.android.systemui.statusbar.notification.row.ExpandableView;
86 private ArrayList<ExpandableView> mTransientViewsToRemove = new ArrayList<>();
142 final ExpandableView child = (ExpandableView) mHostLayout.getChildAt(i); in startAnimationForEvents()
166 private void initAnimationProperties(ExpandableView child, in initAnimationProperties()
184 private void adaptDurationWhenGoingToFullShade(ExpandableView child, in adaptDurationWhenGoingToFullShade()
199 private boolean applyWithoutAnimation(ExpandableView child, ExpandableViewState viewState) { in applyWithoutAnimation()
234 ((ExpandableView) (event.mChangingView)).getViewState().notGoneIndex; in calculateChildAnimationDelay()
247 ExpandableView viewAfterChangingView = noNextView in calculateChildAnimationDelay()
249 : (ExpandableView) event.viewAfterChangingView; in calculateChildAnimationDelay()
329 for (ExpandableView transientViewsToRemove : mTransientViewsToRemove) { in onAnimationFinished()
[all …]
DExpandableViewState.java28 import com.android.systemui.statusbar.notification.row.ExpandableView;
140 if (view instanceof ExpandableView) { in applyToView()
141 ExpandableView expandableView = (ExpandableView) view; in applyToView()
182 if (!(child instanceof ExpandableView)) { in animateTo()
185 ExpandableView expandableView = (ExpandableView) child; in animateTo()
230 private void startHeightAnimation(final ExpandableView child, AnimationProperties properties) { in startHeightAnimation()
311 private void startInsetAnimation(final ExpandableView child, AnimationProperties properties) { in startInsetAnimation()
377 public static int getFinalActualHeight(ExpandableView view) { in getFinalActualHeight()
DNotificationStackScrollLayout.java121 import com.android.systemui.statusbar.notification.row.ExpandableView;
241 private HashSet<ExpandableView> mChildrenToAddAnimated = new HashSet<>();
243 private ArrayList<ExpandableView> mChildrenToRemoveAnimated = new ArrayList<>();
244 private ArrayList<ExpandableView> mChildrenChangingPositions = new ArrayList<>();
264 private ExpandableView.OnHeightChangedListener mOnHeightChangedListener;
302 private ExpandableView mExpandedGroupView;
337 private HashSet<ExpandableView> mClearTransientViewsWhenFinished = new HashSet<>();
363 private ArrayList<ExpandableView> mTmpSortedChildren = new ArrayList<>();
394 private Comparator<ExpandableView> mViewPositionComparator = new Comparator<ExpandableView>() {
396 public int compare(ExpandableView view, ExpandableView otherView) {
[all …]
DAmbientState.java33 import com.android.systemui.statusbar.notification.row.ExpandableView;
46 private ArrayList<ExpandableView> mDraggedViews = new ArrayList<>();
163 public void onBeginDrag(ExpandableView view) { in onBeginDrag()
171 public ArrayList<ExpandableView> getDraggedViews() { in getDraggedViews()
453 public boolean isDozingAndNotPulsing(ExpandableView view) { in isDozingAndNotPulsing()
DNotificationRoundnessManager.java25 import com.android.systemui.statusbar.notification.row.ExpandableView;
45 private HashSet<ExpandableView> mAnimatedChildren;
236 public void setAnimatedChildren(HashSet<ExpandableView> animatedChildren) { in setAnimatedChildren()
DNotificationSwipeHelper.java34 import com.android.systemui.statusbar.notification.row.ExpandableView;
423 final int height = (view instanceof ExpandableView) in isTouchInView()
424 ? ((ExpandableView) view).getActualHeight() in isTouchInView()
DViewState.java33 import com.android.systemui.statusbar.notification.row.ExpandableView;
226 if (!(view instanceof ExpandableView) || !((ExpandableView) view).willBeGone()) { in applyToView()
277 if (child instanceof ExpandableView) { in animateTo()
279 alphaChanging &= !((ExpandableView) child).willBeGone(); in animateTo()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DDragDownHelper.java34 import com.android.systemui.statusbar.notification.row.ExpandableView;
57 private ExpandableView mStartingChild;
170 private void handleExpansion(float heightDelta, ExpandableView child) { in handleExpansion()
189 private void cancelExpansion(final ExpandableView child) { in cancelExpansion()
229 private ExpandableView findView(float x, float y) { in findView()
DPulseExpansionHandler.kt37 import com.android.systemui.statusbar.notification.row.ExpandableView in <lambda>()
69 private var mStartingChild: ExpandableView? = null in <lambda>()
198 private fun reset(child: ExpandableView) { in <lambda>()
215 private fun setUserLocked(child: ExpandableView, userLocked: Boolean) { in <lambda>()
243 private fun findView(x: Float, y: Float): ExpandableView? { in <lambda>()
DNotificationShelf.java45 import com.android.systemui.statusbar.notification.row.ExpandableView;
212 ExpandableView lastView = ambientState.getLastVisibleBackgroundChild(); in updateState()
300 ExpandableView child = (ExpandableView) mHostLayout.getChildAt(i); in updateAppearance()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DExpandHelper.java37 import com.android.systemui.statusbar.notification.row.ExpandableView;
42 ExpandableView getChildAtRawPosition(float x, float y); in getChildAtRawPosition()
43 ExpandableView getChildAtPosition(float x, float y); in getChildAtPosition()
48 int getMaxExpandHeight(ExpandableView view); in getMaxExpandHeight()
97 private ExpandableView mResizedView;
140 ExpandableView mView;
143 public void setView(ExpandableView v) { in setView()
210 private ExpandableView findView(float x, float y) { in findView()
211 ExpandableView v; in findView()
394 private boolean isFullyExpanded(ExpandableView underFocus) { in isFullyExpanded()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DNotificationViewHierarchyManagerTest.java53 import com.android.systemui.statusbar.notification.row.ExpandableView;
284 public void changeViewPosition(ExpandableView child, int newIndex) { in changeViewPosition()
290 public void notifyGroupChildAdded(ExpandableView row) {} in notifyGroupChildAdded()
293 public void notifyGroupChildRemoved(ExpandableView row, ViewGroup childrenContainer) {} in notifyGroupChildRemoved()
296 public void generateAddAnimation(ExpandableView child, boolean fromMoreCard) {} in generateAddAnimation()
302 public void onReset(ExpandableView view) {} in onReset()
339 public void onHeightChanged(ExpandableView view, boolean animate) {} in onHeightChanged()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DHeadsUpTouchHelper.java26 import com.android.systemui.statusbar.notification.row.ExpandableView;
77 ExpandableView child = mCallback.getChildAtRawPosition(x, y); in onInterceptTouchEvent()
178 ExpandableView getChildAtRawPosition(float touchX, float touchY);
DNotificationPanelView.java91 import com.android.systemui.statusbar.notification.row.ExpandableView;
112 ExpandableView.OnHeightChangedListener,
727 ExpandableView child = (ExpandableView) mNotificationStackScroller.getChildAt(i); in computeMaxKeyguardNotifications()
2157 public void onHeightChanged(ExpandableView view, boolean needsAnimation) { in onHeightChanged()
2167 ExpandableView firstChildNotGone = mNotificationStackScroller.getFirstChildNotGone(); in onHeightChanged()
2179 public void onReset(ExpandableView view) { in onReset()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableView.java42 public abstract class ExpandableView extends FrameLayout implements Dumpable { class
64 public ExpandableView(Context context, AttributeSet attrs) { in ExpandableView() method in ExpandableView
637 void onHeightChanged(ExpandableView view, boolean needsAnimation); in onHeightChanged()
644 void onReset(ExpandableView view); in onReset()
DStackScrollerDecorView.java32 public abstract class StackScrollerDecorView extends ExpandableView {
DExpandableOutlineView.java40 public abstract class ExpandableOutlineView extends ExpandableView {
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationRoundnessManagerTest.java37 import com.android.systemui.statusbar.notification.row.ExpandableView;
54 private HashSet<ExpandableView> mAnimatedChildren = new HashSet<>();