Searched defs:getMinimumHeight (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DButtonBarLayout.java133 if (getMinimumHeight() != minHeight) {
148 public int getMinimumHeight() { method in class:ButtonBarLayout
149 return Math.max(mMinimumHeight, super.getMinimumHeight());
/frameworks/support/v4/donut/android/support/v4/view/
H A DViewCompatBase.java86 static int getMinimumHeight(View view) { method in class:ViewCompatBase
/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/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DVectorDrawableCommon.java181 public int getMinimumHeight() { method in class:VectorDrawableCommon
183 return mDelegateDrawable.getMinimumHeight();
185 return super.getMinimumHeight();
/frameworks/support/v4/donut/android/support/v4/graphics/drawable/
H A DDrawableWrapperDonut.java186 public int getMinimumHeight() { method in class:DrawableWrapperDonut
187 return mDrawable.getMinimumHeight();
/frameworks/support/v7/appcompat/src/android/support/v7/graphics/drawable/
H A DDrawableWrapper.java140 public int getMinimumHeight() { method in class:DrawableWrapper
141 return mDrawable.getMinimumHeight();
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java262 public int getMinimumHeight() { method in class:WallpaperManager.FastBitmapDrawable
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java1023 public int getMinimumHeight() { method in class:Drawable
H A DDrawableContainer.java372 public int getMinimumHeight() { method in class:DrawableContainer
376 return mCurrDrawable != null ? mCurrDrawable.getMinimumHeight() : 0;
1102 s = dr.getMinimumHeight();
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java416 int getMinimumHeight(View view); method in interface:ViewCompat.ViewCompatImpl
754 public int getMinimumHeight(View view) { method in class:ViewCompat.BaseViewCompatImpl
755 return ViewCompatBase.getMinimumHeight(view);
1459 public int getMinimumHeight(View view) { method in class:ViewCompat.JBViewCompatImpl
1460 return ViewCompatJB.getMinimumHeight(view);
2571 public static int getMinimumHeight(View view) { method in class:ViewCompat
2572 return IMPL.getMinimumHeight(view);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java2848 ViewCompat.getMinimumHeight(this));
6402 int height = chooseSize(hSpec, usedHeight, getMinimumHeight());
8586 * @return The host RecyclerView's {@link View#getMinimumHeight()}
8588 public int getMinimumHeight() { method in class:RecyclerView.LayoutManager
8589 return ViewCompat.getMinimumHeight(mRecyclerView);
/frameworks/base/core/java/android/view/
H A DView.java18179 || mBackground.getMinimumHeight() != background.getMinimumHeight()
19941 * ({@link android.graphics.drawable.Drawable#getMinimumHeight()}).
19949 return (mBackground == null) ? mMinHeight : max(mMinHeight, mBackground.getMinimumHeight());
19977 public int getMinimumHeight() { method in class:View
19988 * @see #getMinimumHeight()

Completed in 3769 milliseconds