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/
DExpandableNotificationRow.java240 boolean nowExpanded = mGroupManager.toggleGroupExpansion(mStatusBarNotification);
241 mOnExpandClickListener.onExpandClicked(mEntry, nowExpanded);
243 nowExpanded);
249 boolean nowExpanded;
251 nowExpanded = !mExpandedWhenPinned;
252 mExpandedWhenPinned = nowExpanded;
254 nowExpanded = !isExpanded();
255 setUserExpanded(nowExpanded);
258 mOnExpandClickListener.onExpandClicked(mEntry, nowExpanded);
260 nowExpanded);
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBar.java4426 public void onExpandClicked(Entry clickedEntry, boolean nowExpanded) { in onExpandClicked() argument
4427 mHeadsUpManager.setExpanded(clickedEntry, nowExpanded); in onExpandClicked()
4428 if (mState == StatusBarState.KEYGUARD && nowExpanded) { in onExpandClicked()