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

  /frameworks/base/core/java/android/widget/
ProgressBar.java 131 int mMaxHeight;
181 // Calling this method can set mMaxHeight, make sure the corresponding
182 // XML attribute for mMaxHeight is read after calling this method
192 mMaxHeight = a.getDimensionPixelSize(R.styleable.ProgressBar_maxHeight, mMaxHeight);
331 mMaxHeight = 48;
431 if (mMaxHeight < drawableHeight) {
432 mMaxHeight = drawableHeight;
867 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
AbsSeekBar.java 193 int trackHeight = Math.min(mMaxHeight, h - mPaddingTop - mPaddingBottom);
272 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
ImageView.java 67 private int mMaxHeight = Integer.MAX_VALUE;
251 mMaxHeight = maxHeight;
650 mMaxHeight, heightMeasureSpec);

Completed in 8291 milliseconds