Home
last modified time | relevance | path

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

/frameworks/support/compat/src/main/java/androidx/core/widget/
DNestedScrollView.java498 int parentSpace = getHeight() - getPaddingTop() - getPaddingBottom(); in canScroll() local
499 return childSize > parentSpace; in canScroll()
572 int parentSpace = getMeasuredHeight() in onMeasure() local
578 if (childSize < parentSpace) { in onMeasure()
583 MeasureSpec.makeMeasureSpec(parentSpace, MeasureSpec.EXACTLY); in onMeasure()
1084 int parentSpace = getHeight() - getPaddingTop() - getPaddingBottom(); in getScrollRange() local
1085 scrollRange = Math.max(0, childSize - parentSpace); in getScrollRange()
1386 int parentSpace = getHeight() - getPaddingTop() - getPaddingBottom(); in smoothScrollBy() local
1388 final int maxY = Math.max(0, childSize - parentSpace); in smoothScrollBy()
1421 final int parentSpace = getHeight() - getPaddingBottom() - getPaddingTop(); in computeVerticalScrollRange() local
[all …]