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.java268 boolean nowExpanded = mGroupManager.toggleGroupExpansion(mStatusBarNotification);
269 mOnExpandClickListener.onExpandClicked(mEntry, nowExpanded);
271 nowExpanded);
277 boolean nowExpanded;
279 nowExpanded = !mExpandedWhenPinned;
280 mExpandedWhenPinned = nowExpanded;
282 nowExpanded = !isExpanded();
283 setUserExpanded(nowExpanded);
286 mOnExpandClickListener.onExpandClicked(mEntry, nowExpanded);
288 nowExpanded);
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarNotificationPresenter.java456 public void onExpandClicked(NotificationEntry clickedEntry, boolean nowExpanded) { in onExpandClicked() argument
457 mHeadsUpManager.setExpanded(clickedEntry, nowExpanded); in onExpandClicked()
458 if (nowExpanded) { in onExpandClicked()