Lines Matching refs:height

308      * Indicates this ScrollView whether it should stretch its content height to fill
311 * @param fillViewport True to stretch the content's height to the viewport's
1005 int height = getHeight();
1008 mTempRect.top = getScrollY() + height;
1012 if (mTempRect.top + height > view.getBottom()) {
1013 mTempRect.top = view.getBottom() - height;
1017 mTempRect.top = getScrollY() - height;
1022 mTempRect.bottom = mTempRect.top + height;
1041 int height = getHeight();
1044 mTempRect.bottom = height;
1051 mTempRect.top = mTempRect.bottom - height;
1073 int height = getHeight();
1075 int containerBottom = containerTop + height;
1165 private boolean isWithinDeltaOfScreen(View descendant, int delta, int height) {
1170 && (mTempRect.top - delta) <= (getScrollY() + height);
1201 final int height = getHeight() - mPaddingBottom - mPaddingTop;
1203 final int maxY = Math.max(0, bottom - height);
1233 * <p>The scroll range of a scroll view is the overall height of all of its
1401 int height = getHeight();
1403 int screenBottom = screenTop + height;
1424 if (rect.height() > height) {
1442 if (rect.height() > height) {
1574 // screen was at the old height, then scroll the screen to make that
1575 // view visible with the new screen height.
1605 int height = getHeight() - mPaddingBottom - mPaddingTop;
1609 Math.max(0, bottom - height), 0, height/2);
1729 final int height;
1734 height = getHeight() - mPaddingTop - mPaddingBottom;
1739 height = getHeight();
1744 mEdgeGlowTop.setSize(width, height);
1753 final int height;
1758 height = getHeight() - mPaddingTop - mPaddingBottom;
1763 height = getHeight();
1768 Math.max(getScrollRange(), scrollY) + height + translateY);
1770 mEdgeGlowBottom.setSize(width, height);