Home
last modified time | relevance | path

Searched refs:spaceBelow (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/widget/
DToolbar.java1927 final int spaceBelow = height - paddingBottom - titleHeight - in onLayout() local
1929 if (spaceBelow < toplp.bottomMargin + mTitleMarginBottom) { in onLayout()
1931 (bottomlp.bottomMargin + mTitleMarginBottom - spaceBelow)); in onLayout()
2105 final int spaceBelow = height - paddingBottom - childHeight - in getChildTop() local
2107 if (spaceBelow < lp.bottomMargin) { in getChildTop()
2108 spaceAbove = Math.max(0, spaceAbove - (lp.bottomMargin - spaceBelow)); in getChildTop()
DListView.java947 final int spaceBelow = sel.getBottom() - bottomSelectionPixel; in fillFromSelection() local
948 final int offset = Math.min(spaceAbove, spaceBelow); in fillFromSelection()
959 final int spaceBelow = bottomSelectionPixel - sel.getBottom(); in fillFromSelection() local
960 final int offset = Math.min(spaceAbove, spaceBelow); in fillFromSelection()
1099 int spaceBelow = sel.getBottom() - bottomSelectionPixel; in moveSelection() local
1103 int offset = Math.min(spaceAbove, spaceBelow); in moveSelection()
1160 int spaceBelow = bottomSelectionPixel - sel.getBottom(); in moveSelection() local
1164 int offset = Math.min(spaceAbove, spaceBelow); in moveSelection()
DGridView.java830 int spaceBelow = childInSelectedRow.getBottom() - bottomSelectionPixel; in adjustForBottomFadingEdge() local
831 int offset = Math.min(spaceAbove, spaceBelow); in adjustForBottomFadingEdge()
857 int spaceBelow = bottomSelectionPixel - childInSelectedRow.getBottom(); in adjustForTopFadingEdge() local
858 int offset = Math.min(spaceAbove, spaceBelow); in adjustForTopFadingEdge()
DPopupWindow.java1820 final int spaceBelow = displayFrameBottom - anchorTopInScreen; in tryFitVertical() local
1821 if (anchorTopInScreen >= 0 && height <= spaceBelow) { in tryFitVertical()
DAbsListView.java5194 final int spaceBelow = lastBottom - end;
5310 if (spaceAbove < absIncrementalDeltaY || spaceBelow < absIncrementalDeltaY) {