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

  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
FixedWidthTest.java 32 private View mFixedHeight;
46 mFixedHeight = activity.findViewById(R.id.fixed_height);
52 assertNotNull(mFixedHeight);
66 assertEquals(48, mFixedHeight.getHeight());
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java 108 private int mFixedHeight = -1;
773 if (mFixedHeight != -1) {
774 super.onMeasure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(mFixedHeight,
776 setMeasuredDimension(getMeasuredWidth(), mFixedHeight);
807 final boolean adjustBounds = (fixedHeight != mFixedHeight);
808 mFixedHeight = fixedHeight;
809 setMeasuredDimension(getMeasuredWidth(), mFixedHeight);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
CellLayout.java 110 private int mFixedHeight = -1;
802 mFixedHeight = height;
826 if (mFixedWidth > 0 && mFixedHeight > 0) {
828 newHeight = mFixedHeight;
    [all...]

Completed in 1059 milliseconds