Lines Matching defs:height

439      * Indicates this ScrollView whether it should stretch its content height to fill
442 * @param fillViewport True to stretch the content's height to the viewport's
493 int height = getMeasuredHeight();
494 if (child.getMeasuredHeight() < height) {
499 height -= getPaddingTop();
500 height -= getPaddingBottom();
502 MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY);
1111 int height = getHeight();
1114 mTempRect.top = getScrollY() + height;
1118 if (mTempRect.top + height > view.getBottom()) {
1119 mTempRect.top = view.getBottom() - height;
1123 mTempRect.top = getScrollY() - height;
1128 mTempRect.bottom = mTempRect.top + height;
1147 int height = getHeight();
1150 mTempRect.bottom = height;
1157 mTempRect.top = mTempRect.bottom - height;
1179 int height = getHeight();
1181 int containerBottom = containerTop + height;
1271 private boolean isWithinDeltaOfScreen(View descendant, int delta, int height) {
1276 && (mTempRect.top - delta) <= (getScrollY() + height);
1307 final int height = getHeight() - getPaddingBottom() - getPaddingTop();
1309 final int maxY = Math.max(0, bottom - height);
1335 * <p>The scroll range of a scroll view is the overall height of all of its
1497 int height = getHeight();
1499 int screenBottom = screenTop + height;
1520 if (rect.height() > height) {
1538 if (rect.height() > height) {
1664 // screen was at the old height, then scroll the screen to make that
1665 // view visible with the new screen height.
1695 int height = getHeight() - getPaddingBottom() - getPaddingTop();
1699 Math.max(0, bottom - height), 0, height/2);
1779 final int height = getHeight();
1782 Math.max(getScrollRange(), scrollY) + height);
1784 mEdgeGlowBottom.setSize(width, height);