Home
last modified time | relevance | path

Searched refs:mMaxHeight (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Mms/src/com/android/mms/layout/
DHVGALayoutParameters.java34 private static int mMaxHeight; field in HVGALayoutParameters
50 mMaxHeight = in HVGALayoutParameters()
53 mImageHeightLandscape = (int) (mMaxHeight * .90f); in HVGALayoutParameters()
54 mTextHeightLandscape = (int) (mMaxHeight * .10f); in HVGALayoutParameters()
60 " mMaxHeight: " + mMaxHeight + in HVGALayoutParameters()
71 : mMaxHeight; in getWidth()
75 return mType == HVGA_LANDSCAPE ? mMaxHeight in getHeight()
/packages/apps/Email/src/com/android/email/view/
DSizeBoundingFrameLayout.java33 private int mMaxHeight = DIMENSION_DEFAULT; field in SizeBoundingFrameLayout
54 mMaxHeight = a.getDimensionPixelSize( in initFromAttributeSet()
72 mMaxHeight = maxHeight; in setMaxHeight()
78 return mMaxHeight; in getMaxHeight()
101 if (mMaxHeight >= 0) { in onMeasure()
104 heightSize = Math.min(heightSize, mMaxHeight); in onMeasure()
108 heightSize = mMaxHeight; in onMeasure()
/packages/apps/MusicFX/src/com/android/musicfx/seekbar/
DProgressBar.java197 int mMaxHeight; field in ProgressBar
269 mMaxHeight = a.getDimensionPixelSize(R.styleable.ProgressBar_maxHeight, mMaxHeight); in ProgressBar()
411 mMaxHeight = 48; in initProgressBar()
519 if (mMaxHeight < drawableHeight) { in setProgressDrawable()
520 mMaxHeight = drawableHeight; in setProgressDrawable()
1012 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight())); in onMeasure()
DAbsSeekBar.java275 int trackHeight = Math.min(mMaxHeight, h - mPaddingTop - mPaddingBottom);
381 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));