Searched defs:mExpandedHeight (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
H A DListItemsExpandOnSelectionTest.java30 private int mExpandedHeight; field in class:ListItemsExpandOnSelectionTest
44 mExpandedHeight = mListView.getChildAt(0).getHeight();
52 mExpandedHeight, (int) (mNormalHeight * 1.5));
91 assertEquals("expanded height", mExpandedHeight, mListView.getSelectedView().getHeight());
113 assertEquals("expanded height", mExpandedHeight, mListView.getSelectedView().getHeight());
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardClockPositionAlgorithm.java48 private float mExpandedHeight; field in class:KeyguardClockPositionAlgorithm
92 mExpandedHeight = expandedHeight;
144 float value = (rubberbandFactor * (mMaxPanelHeight - mExpandedHeight));
H A DStatusBarHeaderView.java94 private int mExpandedHeight; field in class:StatusBarHeaderView
253 mExpandedHeight = getResources().getDimensionPixelSize(
293 return mExpandedHeight;
325 int height = mExpanded ? mExpandedHeight : mCollapsedHeight;
474 float height = mCollapsedHeight + t * (mExpandedHeight - mCollapsedHeight);
478 if (height > mExpandedHeight) {
479 height = mExpandedHeight;
H A DPanelView.java63 protected float mExpandedHeight = 0; field in class:PanelView
249 startExpandMotion(x, y, false /* startTracking */, mExpandedHeight);
284 startExpandMotion(newX, newY, true /* startTracking */, mExpandedHeight);
305 startExpandMotion(x, y, false /* startTracking */, mExpandedHeight);
512 startExpandMotion(x, y, true /* startTracking */, mExpandedHeight);
559 return mExpandedHeight;
632 && mExpandedHeight < getMaxPanelHeight() - getClearAllHeight()
637 if (target == mExpandedHeight || getOverExpansionAmount() > 0f && expand) {
647 mFlingAnimationUtils.apply(animator, mExpandedHeight, target, vel, getHeight());
652 mFlingAnimationUtils.applyDismissing(animator, mExpandedHeight, targe
[all...]

Completed in 140 milliseconds