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.java574 boolean nowExpanded; in finishExpanding()
577 nowExpanded = currentHeight > mOldHeight && velocity >= 0; in finishExpanding()
579 nowExpanded = currentHeight >= mOldHeight || velocity > 0; in finishExpanding()
581 nowExpanded |= mNaturalHeight == mSmallSize; in finishExpanding()
583 nowExpanded = !wasClosed; in finishExpanding()
590 float targetHeight = nowExpanded ? naturalHeight : mSmallSize; in finishExpanding()
595 final boolean expand = nowExpanded; in finishExpanding()
618 velocity = nowExpanded == velocity >= 0 ? velocity : 0; in finishExpanding()
625 mCallback.setUserExpandedChild(mResizedView, nowExpanded); in finishExpanding()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableNotificationRow.java274 boolean nowExpanded = mGroupManager.toggleGroupExpansion(mEntry.getSbn());
275 mOnExpandClickListener.onExpandClicked(mEntry, nowExpanded);
277 nowExpanded);
283 boolean nowExpanded;
285 nowExpanded = !mExpandedWhenPinned;
286 mExpandedWhenPinned = nowExpanded;
291 mExpansionChangedListener.onExpansionChanged(nowExpanded);
294 nowExpanded = !isExpanded();
295 setUserExpanded(nowExpanded);
298 mOnExpandClickListener.onExpandClicked(mEntry, nowExpanded);
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarNotificationPresenter.java416 public void onExpandClicked(NotificationEntry clickedEntry, boolean nowExpanded) { in onExpandClicked() argument
417 mHeadsUpManager.setExpanded(clickedEntry, nowExpanded); in onExpandClicked()
418 if (nowExpanded) { in onExpandClicked()