Searched defs:getMinimumHeight (Results 1 - 9 of 9) 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/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/graphics/java/android/graphics/drawable/
H A DNinePatchDrawable.java532 public int getMinimumHeight() { method in class:NinePatchDrawable
H A DDrawable.java858 public int getMinimumHeight() { method in class:Drawable
H A DDrawableContainer.java361 public int getMinimumHeight() { method in class:DrawableContainer
365 return mCurrDrawable != null ? mCurrDrawable.getMinimumHeight() : 0;
997 s = dr.getMinimumHeight();
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java220 public int getMinimumHeight() { method in class:WallpaperManager.FastBitmapDrawable
/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/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/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 402 milliseconds