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.java945 final int spaceBelow = sel.getBottom() - bottomSelectionPixel; in fillFromSelection() local
946 final int offset = Math.min(spaceAbove, spaceBelow); in fillFromSelection()
957 final int spaceBelow = bottomSelectionPixel - sel.getBottom(); in fillFromSelection() local
958 final int offset = Math.min(spaceAbove, spaceBelow); in fillFromSelection()
1097 int spaceBelow = sel.getBottom() - bottomSelectionPixel; in moveSelection() local
1101 int offset = Math.min(spaceAbove, spaceBelow); in moveSelection()
1158 int spaceBelow = bottomSelectionPixel - sel.getBottom(); in moveSelection() local
1162 int offset = Math.min(spaceAbove, spaceBelow); in moveSelection()
DGridView.java831 int spaceBelow = childInSelectedRow.getBottom() - bottomSelectionPixel; in adjustForBottomFadingEdge() local
832 int offset = Math.min(spaceAbove, spaceBelow); in adjustForBottomFadingEdge()
858 int spaceBelow = bottomSelectionPixel - childInSelectedRow.getBottom(); in adjustForTopFadingEdge() local
859 int offset = Math.min(spaceAbove, spaceBelow); in adjustForTopFadingEdge()
DPopupWindow.java1823 final int spaceBelow = displayFrameBottom - anchorTopInScreen; in tryFitVertical() local
1824 if (anchorTopInScreen >= displayFrameTop && height <= spaceBelow) { in tryFitVertical()
DAbsListView.java5486 final int spaceBelow = lastBottom - end;
5602 if (spaceAbove < absIncrementalDeltaY || spaceBelow < absIncrementalDeltaY) {