HomeSort by relevance Sort by last modified time
    Searched refs:mExpandedHeight (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListItemsExpandOnSelectionTest.java 30 private int mExpandedHeight;
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/
PanelView.java 75 private float mExpandedHeight = 0;
247 && mExpandedHeight > getFullHeight() // are we past the end?
255 mClosing = mExpandedHeight > 0 && mVel < 0;
260 if (DEBUG) LOG("tick: before: h=%d", (int) mExpandedHeight);
266 braking = mExpandedHeight <= mCollapseBrakingDistancePx;
269 braking = mExpandedHeight >= (fh-mExpandBrakingDistancePx);
292 float h = mExpandedHeight + mVel * dt;
305 || (mClosing && mExpandedHeight == 0)
306 || ((mRubberbanding || !mClosing) && mExpandedHeight == fh)) {
311 + mExpandedHeight + " v=" + mVel + ")")
    [all...]

Completed in 302 milliseconds