Searched refs:mExpandedHeight (Results 1 - 2 of 2) 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 DPanelView.java74 private float mExpandedHeight = 0; field in class:PanelView
256 && mExpandedHeight > getFullHeight() // are we past the end?
264 mClosing = mExpandedHeight > 0 && mVel < 0;
269 if (DEBUG) logf("tick: before: h=%d", (int) mExpandedHeight);
275 braking = mExpandedHeight <= mCollapseBrakingDistancePx;
278 braking = mExpandedHeight >= (fh-mExpandBrakingDistancePx);
301 float h = mExpandedHeight + mVel * dt;
314 || (mClosing && mExpandedHeight == 0)
315 || ((mRubberbanding || !mClosing) && mExpandedHeight == fh)) {
320 + mExpandedHeight
[all...]

Completed in 96 milliseconds