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.java564 boolean nowExpanded; in finishExpanding()
567 nowExpanded = currentHeight > mOldHeight && velocity >= 0; in finishExpanding()
569 nowExpanded = currentHeight >= mOldHeight || velocity > 0; in finishExpanding()
571 nowExpanded |= mNaturalHeight == mSmallSize; in finishExpanding()
573 nowExpanded = !wasClosed; in finishExpanding()
580 float targetHeight = nowExpanded ? naturalHeight : mSmallSize; in finishExpanding()
585 final boolean expand = nowExpanded; in finishExpanding()
608 velocity = nowExpanded == velocity >= 0 ? velocity : 0; in finishExpanding()
615 mCallback.setUserExpandedChild(mResizedView, nowExpanded); in finishExpanding()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableNotificationRow.java283 boolean nowExpanded = mGroupManager.toggleGroupExpansion(mStatusBarNotification);
284 mOnExpandClickListener.onExpandClicked(mEntry, nowExpanded);
286 nowExpanded);
292 boolean nowExpanded;
294 nowExpanded = !mExpandedWhenPinned;
295 mExpandedWhenPinned = nowExpanded;
297 nowExpanded = !isExpanded();
298 setUserExpanded(nowExpanded);
301 mOnExpandClickListener.onExpandClicked(mEntry, nowExpanded);
303 nowExpanded);
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarNotificationPresenter.java461 public void onExpandClicked(NotificationEntry clickedEntry, boolean nowExpanded) { in onExpandClicked() argument
462 mHeadsUpManager.setExpanded(clickedEntry, nowExpanded); in onExpandClicked()
463 if (mStatusBarStateController.getState() == StatusBarState.KEYGUARD && nowExpanded) { in onExpandClicked()