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

/packages/apps/Mms/src/com/android/mms/layout/
H A DHVGALayoutParameters.java34 private static int mMaxHeight; field in class:HVGALayoutParameters
50 mMaxHeight =
53 mImageHeightLandscape = (int) (mMaxHeight * .90f);
54 mTextHeightLandscape = (int) (mMaxHeight * .10f);
60 " mMaxHeight: " + mMaxHeight +
71 : mMaxHeight;
75 return mType == HVGA_LANDSCAPE ? mMaxHeight
/packages/apps/Email/src/com/android/email/view/
H A DSizeBoundingFrameLayout.java33 private int mMaxHeight = DIMENSION_DEFAULT; field in class:SizeBoundingFrameLayout
54 mMaxHeight = a.getDimensionPixelSize(
72 mMaxHeight = maxHeight;
78 return mMaxHeight;
101 if (mMaxHeight >= 0) {
104 heightSize = Math.min(heightSize, mMaxHeight);
108 heightSize = mMaxHeight;
/packages/apps/MusicFX/src/com/android/musicfx/seekbar/
H A DProgressBar.java197 int mMaxHeight; field in class:ProgressBar
258 // Calling this method can set mMaxHeight, make sure the corresponding
259 // XML attribute for mMaxHeight is read after calling this method
269 mMaxHeight = a.getDimensionPixelSize(R.styleable.ProgressBar_maxHeight, mMaxHeight);
411 mMaxHeight = 48;
519 if (mMaxHeight < drawableHeight) {
520 mMaxHeight = drawableHeight;
1003 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
H A DAbsSeekBar.java275 int trackHeight = Math.min(mMaxHeight, h - mPaddingTop - mPaddingBottom);
381 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));

Completed in 525 milliseconds