Searched refs:getMinimumHeight (Results 1 - 17 of 17) sorted by relevance

/frameworks/support/v4/jellybean/android/support/v4/view/
H A DViewCompatJB.java77 public static int getMinimumHeight(View view) { method in class:ViewCompatJB
78 return view.getMinimumHeight();
/frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
H A DBaselineButtonsTest.java67 mPause.getBackground().getMinimumHeight());
70 mPrev.getBackground().getMinimumHeight());
73 mNext.getBackground().getMinimumHeight());
/frameworks/base/core/tests/coretests/src/android/view/
H A DDrawableBgMinSizeTest.java87 view.getHeight() >= mBackgroundDrawable.getMinimumHeight());
124 .getHeight() >= mBigBackgroundDrawable.getMinimumHeight());
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DDrawableWrapper.java140 public int getMinimumHeight() { method in class:DrawableWrapper
141 return mDrawable.getMinimumHeight();
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DPrintOptionsLayout.java118 height = Math.max(height, getMinimumHeight());
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java309 public int getMinimumHeight(View view); method in interface:ViewCompat.ViewCompatImpl
600 public int getMinimumHeight(View view) { method in class:ViewCompat.BaseViewCompatImpl
1067 public int getMinimumHeight(View view) { method in class:ViewCompat.JBViewCompatImpl
1068 return ViewCompatJB.getMinimumHeight(view);
1964 public static int getMinimumHeight(View view) { method in class:ViewCompat
1965 return IMPL.getMinimumHeight(view);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawableContainer.java361 public int getMinimumHeight() { method in class:DrawableContainer
365 return mCurrDrawable != null ? mCurrDrawable.getMinimumHeight() : 0;
997 s = dr.getMinimumHeight();
H A DDrawable.java858 public int getMinimumHeight() { method in class:Drawable
H A DNinePatchDrawable.java532 public int getMinimumHeight() { method in class:NinePatchDrawable
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java220 public int getMinimumHeight() { method in class:WallpaperManager.FastBitmapDrawable
/frameworks/base/core/java/android/widget/
H A DFrameLayout.java463 maxHeight = Math.max(maxHeight, drawable.getMinimumHeight());
H A DListView.java3193 final int height = drawable.getMinimumHeight();
3210 final int height = drawable.getMinimumHeight();
H A DProgressBar.java740 int drawableHeight = d.getMinimumHeight();
H A DToolbar.java1326 final int alignmentHeight = getMinimumHeight();
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java1886 height = ViewCompat.getMinimumHeight(this);
6453 * @return The host RecyclerView's {@link View#getMinimumHeight()}
6455 public int getMinimumHeight() { method in class:RecyclerView.LayoutManager
6456 return ViewCompat.getMinimumHeight(mRecyclerView);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DToolbar.java1784 return ViewCompat.getMinimumHeight(this);
/frameworks/base/core/java/android/view/
H A DView.java16282 || mBackground.getMinimumHeight() != background.getMinimumHeight()
17754 * ({@link android.graphics.drawable.Drawable#getMinimumHeight()}).
17762 return (mBackground == null) ? mMinHeight : max(mMinHeight, mBackground.getMinimumHeight());
17790 public int getMinimumHeight() { method in class:View
17801 * @see #getMinimumHeight()

Completed in 450 milliseconds