HomeSort by relevance Sort by last modified time
    Searched refs:getMinHeight (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/
Drawable.java 49 public float getMinHeight ();
Layout.java 66 public float getMinHeight ();
BaseDrawable.java 39 minHeight = drawable.getMinHeight();
85 public float getMinHeight () {
TextureRegionDrawable.java 71 sprite.setSize(getMinWidth(), getMinHeight());
SpriteDrawable.java 91 newSprite.setSize(getMinWidth(), getMinHeight());
  /frameworks/support/v7/cardview/base/android/support/v7/widget/
CardViewImpl.java 45 float getMinHeight(CardViewDelegate cardView);
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
ProgressBar.java 124 float knobHeight = knob == null ? 0 : knob.getMinHeight();
143 knobHeightHalf = knobBefore == null ? 0 : knobBefore.getMinHeight() * 0.5f;
170 bg.draw(batch, x, y + (int)((height - bg.getMinHeight()) * 0.5f), width, bg.getMinHeight());
192 knobBefore.draw(batch, x + offset, y + (int)((height - knobBefore.getMinHeight()) * 0.5f),
193 (int)(position + knobWidthHalf), knobBefore.getMinHeight());
196 knobAfter.draw(batch, x + (int)(position + knobWidthHalf), y + (int)((height - knobAfter.getMinHeight()) * 0.5f),
197 width - (int)(position + knobWidthHalf), knobAfter.getMinHeight());
289 return Math.max(knob == null ? 0 : knob.getMinHeight(), bg == null ? 0 : bg.getMinHeight());
    [all...]
Stack.java 80 minHeight = Math.max(minHeight, layout.getMinHeight());
126 public float getMinHeight () {
Image.java 92 float regionHeight = drawable.getMinHeight();
145 if (getPrefWidth() != drawable.getMinWidth() || getPrefHeight() != drawable.getMinHeight()) invalidateHierarchy();
169 public float getMinHeight () {
179 if (drawable != null) return drawable.getMinHeight();
Touchpad.java 146 if (style.knob != null) radius -= Math.max(style.knob.getMinWidth(), style.knob.getMinHeight()) / 2;
172 y += knobPosition.y - knob.getMinHeight() / 2f;
173 knob.draw(batch, x, y, knob.getMinWidth(), knob.getMinHeight());
184 return style.background != null ? style.background.getMinHeight() : 0;
Widget.java 44 public float getMinHeight () {
ScrollPane.java 385 if (hScrollKnob != null) scrollbarHeight = hScrollKnob.getMinHeight();
386 if (style.hScroll != null) scrollbarHeight = Math.max(scrollbarHeight, style.hScroll.getMinHeight());
469 float hScrollHeight = style.hScroll != null ? style.hScroll.getMinHeight() : hScrollKnob.getMinHeight();
480 hKnobBounds.height = hScrollKnob.getMinHeight();
508 vKnobBounds.height = Math.max(vScrollKnob.getMinHeight(), (int)(vScrollBounds.height * areaHeight / widgetHeight));
510 vKnobBounds.height = vScrollKnob.getMinHeight();
554 if (style.hScrollKnob != null) scrollbarHeight = style.hScrollKnob.getMinHeight();
555 if (style.hScroll != null) scrollbarHeight = Math.max(scrollbarHeight, style.hScroll.getMinHeight());
648 if (style.hScrollKnob != null) scrollbarHeight = style.hScrollKnob.getMinHeight();
    [all...]
Button.java 248 if (style.up != null) height = Math.max(height, style.up.getMinHeight());
249 if (style.down != null) height = Math.max(height, style.down.getMinHeight());
250 if (style.checked != null) height = Math.max(height, style.checked.getMinHeight());
258 public float getMinHeight () {
SplitPane.java 117 float availHeight = getHeight() - handle.getMinHeight();
181 return first + style.handle.getMinHeight() + second;
188 public float getMinHeight () {
217 float availHeight = height - handle.getMinHeight();
220 float handleHeight = handle.getMinHeight();
Value.java 57 if (context instanceof Layout) return ((Layout)context).getMinHeight();
WidgetGroup.java 55 public float getMinHeight () {
Tree.java 182 node.height = Math.max(node.height, node.icon.getMinHeight());
233 float iconY = actor.getY() + Math.round((node.height - node.icon.getMinHeight()) / 2);
236 node.icon.getMinWidth(), node.icon.getMinHeight());
243 float iconY = actor.getY() + Math.round((node.height - expandIcon.getMinHeight()) / 2);
244 expandIcon.draw(batch, x + indent - iconSpacingLeft, y + iconY, expandIcon.getMinWidth(), expandIcon.getMinHeight());
Container.java 589 public float getMinHeight () {
609 if (background != null) v = Math.max(v, background.getMinHeight());
610 return Math.max(getMinHeight(), v + padTop.get(this) + padBottom.get(this));
  /prebuilts/sdk/current/support/v7/cardview/libs/
android-support-v7-cardview.jar 
  /frameworks/support/v7/cardview/gingerbread/android/support/v7/widget/
CardViewGingerbread.java 101 (int) Math.ceil(getMinHeight(cardView)));
165 public float getMinHeight(CardViewDelegate cardView) {
166 return getShadowBackground(cardView).getMinHeight();
  /frameworks/support/v7/cardview/api21/android/support/v7/widget/
CardViewApi21.java 64 public float getMinHeight(CardViewDelegate cardView) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
NotificationChildrenContainer.java 729 : child.getShowingLayout().getMinHeight(true /* likeGroupExpanded */);
751 : child.getShowingLayout().getMinHeight(true /* likeGroupExpanded */);
753 float singleLineHeight = child.getShowingLayout().getMinHeight(
    [all...]
  /frameworks/support/core-ui/java/android/support/v4/view/
PagerTabStrip.java 219 int getMinHeight() {
220 return Math.max(super.getMinHeight(), mMinStripHeight);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ExpandableNotificationRow.java     [all...]
NotificationContentView.java 423 mContentHeight = Math.max(Math.min(contentHeight, getHeight()), getMinHeight());
569 public int getMinHeight() {
570 return getMinHeight(false /* likeGroupExpanded */);
573 public int getMinHeight(boolean likeGroupExpanded) {
    [all...]

Completed in 179 milliseconds

1 2 3 4