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

/frameworks/support/v4/donut/android/support/v4/view/
H A DViewCompatBase.java85 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/v4/donut/android/support/v4/graphics/drawable/
H A DDrawableWrapperDonut.java143 public int getMinimumHeight() { method in class:DrawableWrapperDonut
144 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/graphics/java/android/graphics/drawable/
H A DNinePatchDrawable.java548 public int getMinimumHeight() { method in class:NinePatchDrawable
H A DDrawable.java950 public int getMinimumHeight() { method in class:Drawable
H A DDrawableContainer.java367 public int getMinimumHeight() { method in class:DrawableContainer
371 return mCurrDrawable != null ? mCurrDrawable.getMinimumHeight() : 0;
1016 s = dr.getMinimumHeight();
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java224 public int getMinimumHeight() { method in class:WallpaperManager.FastBitmapDrawable
/frameworks/base/core/java/com/android/internal/widget/
H A DFloatingToolbar.java577 int minimumOverflowHeightWithMargin = mOverflowPanel.getMinimumHeight() + margin;
1240 public int getMinimumHeight() { method in class:FloatingToolbar.FloatingToolbarOverflowPanel
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java331 public int getMinimumHeight(View view); method in interface:ViewCompat.ViewCompatImpl
654 public int getMinimumHeight(View view) { method in class:ViewCompat.BaseViewCompatImpl
655 return ViewCompatBase.getMinimumHeight(view);
1288 public int getMinimumHeight(View view) { method in class:ViewCompat.JBViewCompatImpl
1289 return ViewCompatJB.getMinimumHeight(view);
2314 public static int getMinimumHeight(View view) { method in class:ViewCompat
2315 return IMPL.getMinimumHeight(view);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java2530 height = ViewCompat.getMinimumHeight(this);
7552 * @return The host RecyclerView's {@link View#getMinimumHeight()}
7554 public int getMinimumHeight() { method in class:RecyclerView.LayoutManager
7555 return ViewCompat.getMinimumHeight(mRecyclerView);
/frameworks/base/core/java/android/view/
H A DView.java17283 || mBackground.getMinimumHeight() != background.getMinimumHeight()
19005 * ({@link android.graphics.drawable.Drawable#getMinimumHeight()}).
19013 return (mBackground == null) ? mMinHeight : max(mMinHeight, mBackground.getMinimumHeight());
19041 public int getMinimumHeight() { method in class:View
19052 * @see #getMinimumHeight()

Completed in 352 milliseconds