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

  /development/samples/devbytes/animation/ListViewExpandingCells/src/com/example/android/expandingcells/
ExpandingLayout.java 41 private int mExpandedHeight = -1;
56 if (mExpandedHeight > 0) {
57 heightMeasureSpec = MeasureSpec.makeMeasureSpec(mExpandedHeight, MeasureSpec.AT_MOST);
63 mExpandedHeight = h;
69 return mExpandedHeight;
73 mExpandedHeight = expandedHeight;
ExpandableListItem.java 32 private int mExpandedHeight;
40 mExpandedHeight = -1;
76 return mExpandedHeight;
80 mExpandedHeight = expandedHeight;
  /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 74 private float mExpandedHeight = 0;
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 + " v=" + mVel + ")")
    [all...]

Completed in 70 milliseconds