Searched defs:bottom (Results 1 - 25 of 306) sorted by last modified time

1234567891011>>

/frameworks/support/transition/api14/android/support/transition/
H A DViewUtilsApi14.java144 public void setLeftTopRightBottom(View v, int left, int top, int right, int bottom) { argument
148 v.setBottom(bottom);
/frameworks/support/transition/api22/android/support/transition/
H A DViewUtilsApi22.java36 public void setLeftTopRightBottom(View v, int left, int top, int right, int bottom) { argument
40 sSetLeftTopRightBottomMethod.invoke(v, left, top, right, bottom);
/frameworks/support/transition/base/android/support/transition/
H A DViewUtilsImpl.java45 void setLeftTopRightBottom(View v, int left, int top, int right, int bottom); argument
/frameworks/support/transition/src/android/support/transition/
H A DSidePropagation.java96 int bottom = top + sceneRoot.getHeight();
105 epicenterY = (top + bottom) / 2;
109 left, top, right, bottom);
122 int left, int top, int right, int bottom) {
141 distance = bottom - viewY + Math.abs(epicenterX - viewX);
121 distance(View sceneRoot, int viewX, int viewY, int epicenterX, int epicenterY, int left, int top, int right, int bottom) argument
H A DViewUtils.java202 * @param bottom Bottom position, relative to parent
204 static void setLeftTopRightBottom(@NonNull View v, int left, int top, int right, int bottom) { argument
205 IMPL.setLeftTopRightBottom(v, left, top, right, bottom);
/frameworks/support/transition/tests/src/android/support/transition/
H A DAutoTransitionTest.java99 public void onLayoutChange(View v, int left, int top, int right, int bottom, argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/graphics/
H A DBoundsRule.java23 * rectangular bound - left/top/right/bottom.
135 if (bottom == null) {
136 result.bottom = rect.bottom;
138 result.bottom = doCalculate(rect.top, bottom, rect.height());
148 this.bottom = boundsRule.bottom != null ? new ValueRule(boundsRule.bottom) : null;
164 /** {@link ValueRule} for bottom attribut
165 public ValueRule bottom; field in class:BoundsRule
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DBaseCardView.java90 * at the bottom of the card, shifting up the info view without affecting
130 * Distance of top of info view to bottom of MainView, it will shift up when extra view appears.
437 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
505 onSizeChanged(0, 0, right - left, bottom - top);
H A DNonOverlappingLinearLayoutWithForeground.java108 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
109 super.onLayout(changed, left, top, right, bottom);
H A DScaleFrameLayout.java97 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
118 parentBottom = (int)(pivotY + (bottom - top - pivotY) / mLayoutScaleY + 0.5f)
122 parentBottom = bottom - top - getPaddingBottom();
H A DStreamingTextView.java244 float x, int top, int y, int bottom, Paint paint) {
243 draw(Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, Paint paint) argument
/frameworks/support/v17/preference-leanback/api21/android/support/v17/internal/widget/
H A DOutlineOnlyWithChildrenFrameLayout.java62 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
63 super.onLayout(changed, left, top, right, bottom);
/frameworks/support/v7/appcompat/src/android/support/v7/graphics/drawable/
H A DDrawableWrapper.java214 public void setHotspotBounds(int left, int top, int right, int bottom) { argument
215 DrawableCompat.setHotspotBounds(mDrawable, left, top, right, bottom);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionBarOverlayLayout.java262 boolean bottom, boolean right) {
277 if (bottom && lp.bottomMargin != insets.bottom) {
279 lp.bottomMargin = insets.bottom;
384 mContentInsets.bottom += bottomInset;
387 mInnerInsets.bottom += bottomInset;
423 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
430 final int parentBottom = bottom - top - getPaddingBottom();
261 applyInsets(View view, Rect insets, boolean left, boolean top, boolean bottom, boolean right) argument
H A DActionMenuView.java437 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
439 super.onLayout(changed, left, top, right, bottom);
444 final int midVertical = (bottom - top) / 2;
H A DActivityChooserView.java469 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
470 mActivityChooserContent.layout(0, 0, right - left, bottom - top);
H A DAlertDialogLayout.java263 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
283 childTop = getPaddingTop() + bottom - top - totalLength;
288 childTop = getPaddingTop() + (bottom - top - totalLength) / 2;
H A DAppCompatTextHelper.java284 void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
H A DAppCompatTextView.java177 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
178 super.onLayout(changed, left, top, right, bottom);
180 mTextHelper.onLayout(changed, left, top, right, bottom);
H A DContentFrameLayout.java86 public void setDecorPadding(int left, int top, int right, int bottom) { argument
87 mDecorPadding.set(left, top, right, bottom);
131 h -= (mDecorPadding.top + mDecorPadding.bottom);
H A DLinearLayoutCompat.java310 int bottom = 0;
312 bottom = getHeight() - getPaddingBottom() - mDividerHeight;
315 bottom = child.getBottom() + lp.bottomMargin;
317 drawHorizontalDivider(canvas, bottom);
1423 * @param bottom
1425 void layoutVertical(int left, int top, int right, int bottom) { argument
1446 childTop = getPaddingTop() + bottom - top - mTotalLength;
1451 childTop = getPaddingTop() + (bottom - top - mTotalLength) / 2;
1518 * @param bottom
1520 void layoutHorizontal(int left, int top, int right, int bottom) { argument
[all...]
H A DListViewCompat.java96 mSelectionBottomPadding = padding.bottom;
229 selectorRect.bottom += mSelectionBottomPadding;
399 public void setHotspotBounds(int left, int top, int right, int bottom) { argument
401 super.setHotspotBounds(left, top, right, bottom);
H A DSearchView.java376 public void onLayoutChange(View v, int left, int top, int right, int bottom,
829 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
830 super.onLayout(changed, left, top, right, bottom);
837 mSearchSrcTextViewBounds.left, 0, mSearchSrcTextViewBounds.right, bottom - top);
H A DSwitchCompat.java1074 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
1075 super.onLayout(changed, left, top, right, bottom);
1168 if (thumbInsets.bottom > padding.bottom) {
1169 trackBottom -= thumbInsets.bottom - padding.bottom;
1209 final int switchInnerBottom = switchBottom - padding.bottom;
H A DToolbar.java376 * @param bottom the bottom title margin in pixels
383 public void setTitleMargin(int start, int top, int end, int bottom) { argument
387 mTitleMarginBottom = bottom;
459 * @return the bottom title margin in pixels
468 * Sets the bottom title margin in pixels.
470 * @param margin the bottom title margin in pixels

Completed in 1194 milliseconds

1234567891011>>