Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/
DExpandHelper.java601 boolean nowExpanded; in finishExpanding()
604 nowExpanded = currentHeight > mOldHeight && velocity >= 0; in finishExpanding()
606 nowExpanded = currentHeight >= mOldHeight || velocity > 0; in finishExpanding()
608 nowExpanded |= mNaturalHeight == mSmallSize; in finishExpanding()
610 nowExpanded = !wasClosed; in finishExpanding()
617 float targetHeight = nowExpanded ? naturalHeight : mSmallSize; in finishExpanding()
622 final boolean expand = nowExpanded; in finishExpanding()
648 velocity = nowExpanded == velocity >= 0 ? velocity : 0; in finishExpanding()
655 mCallback.setUserExpandedChild(mResizedView, nowExpanded); in finishExpanding()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarNotificationPresenter.java244 boolean nowExpanded) { in onExpandClicked() argument
245 mHeadsUpManager.setExpanded(clickedEntry, nowExpanded); in onExpandClicked()
247 if (nowExpanded) { in onExpandClicked()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableNotificationRow.java335 boolean nowExpanded = mGroupExpansionManager.toggleGroupExpansion(mEntry);
336 mOnExpandClickListener.onExpandClicked(mEntry, v, nowExpanded);
337 mMetricsLogger.action(MetricsEvent.ACTION_NOTIFICATION_GROUP_EXPANDER, nowExpanded);
343 boolean nowExpanded;
345 nowExpanded = !mExpandedWhenPinned;
346 mExpandedWhenPinned = nowExpanded;
351 mExpansionChangedListener.onExpansionChanged(nowExpanded);
354 nowExpanded = !isExpanded();
355 setUserExpanded(nowExpanded);
358 mOnExpandClickListener.onExpandClicked(mEntry, v, nowExpanded);
[all …]