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/compat/gingerbread/android/support/v4/view/
H A DViewCompatBase.java89 static int getMinimumHeight(View view) { method in class:ViewCompatBase
/frameworks/support/compat/jellybean/android/support/v4/view/
H A DViewCompatJB.java78 public static int getMinimumHeight(View view) { method in class:ViewCompatJB
79 return view.getMinimumHeight();
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DVectorDrawableCommon.java152 public int getMinimumHeight() { method in class:VectorDrawableCommon
154 return mDelegateDrawable.getMinimumHeight();
156 return super.getMinimumHeight();
/frameworks/support/compat/gingerbread/android/support/v4/graphics/drawable/
H A DDrawableWrapperGingerbread.java186 public int getMinimumHeight() { method in class:DrawableWrapperGingerbread
187 return mDrawable.getMinimumHeight();
/frameworks/support/v7/appcompat/src/android/support/v7/graphics/drawable/
H A DDrawableWrapper.java144 public int getMinimumHeight() { method in class:DrawableWrapper
145 return mDrawable.getMinimumHeight();
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java264 public int getMinimumHeight() { method in class:WallpaperManager.FastBitmapDrawable
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java1026 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;
1106 s = dr.getMinimumHeight();
/frameworks/support/compat/java/android/support/v4/view/
H A DViewCompat.java423 int getMinimumHeight(View view); method in interface:ViewCompat.ViewCompatImpl
773 public int getMinimumHeight(View view) { method in class:ViewCompat.BaseViewCompatImpl
774 return ViewCompatBase.getMinimumHeight(view);
1485 public int getMinimumHeight(View view) { method in class:ViewCompat.JBViewCompatImpl
1486 return ViewCompatJB.getMinimumHeight(view);
2667 public static int getMinimumHeight(View view) { method in class:ViewCompat
2668 return IMPL.getMinimumHeight(view);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java2967 ViewCompat.getMinimumHeight(this));
6707 int height = chooseSize(hSpec, usedHeight, getMinimumHeight());
8929 * @return The host RecyclerView's {@link View#getMinimumHeight()}
8931 public int getMinimumHeight() { method in class:RecyclerView.LayoutManager
8932 return ViewCompat.getMinimumHeight(mRecyclerView);
/frameworks/base/core/java/android/view/
H A DView.java18306 || mBackground.getMinimumHeight() != background.getMinimumHeight()
20068 * ({@link android.graphics.drawable.Drawable#getMinimumHeight()}).
20076 return (mBackground == null) ? mMinHeight : max(mMinHeight, mBackground.getMinimumHeight());
20104 public int getMinimumHeight() { method in class:View
20115 * @see #getMinimumHeight()

Completed in 420 milliseconds