Lines Matching defs:bottom

118      * The list will automatically scroll to the bottom when a data set change
127 * The list will automatically scroll to the bottom, no matter what items
344 * The selection's bottom padding
438 * Indicates whether the list is stacked from the bottom edge or
575 * This view is in transcript mode -- it shows the bottom of the list when the data
675 * Tracks the state of the bottom edge glow.
687 * An estimate of how many pixels are between the bottom of the list and
688 * the bottom of the last position in the adapter, based on the last time
700 * the bottom correctly on resizes.
1247 getChildAt(childCount - 1).getBottom() <= getHeight() - mListPadding.bottom;
1549 final int viewportHeight = getHeight() - mListPadding.top - mListPadding.bottom;
1557 final int viewportHeight = getHeight() - mListPadding.top - mListPadding.bottom;
1657 * the bottom edge.
1659 * @return true if the content is stacked from the bottom edge, false otherwise
1667 * When stack from bottom is set to true, the list fills its content starting from
1668 * the bottom of the view.
1670 * @param stackFromBottom true to pin the view's content to the bottom edge,
2027 final int bottom = view.getBottom();
2030 extent -= ((bottom - getHeight()) * 100) / height;
2113 final int bottom = getChildAt(count - 1).getBottom();
2116 return bottom > height - mPaddingBottom ?
2117 (bottom - height + mPaddingBottom) / fadeLength : fadeEdge;
2130 listPadding.bottom = mSelectionBottomPadding + mPaddingBottom;
2176 protected boolean setFrame(int left, int top, int right, int bottom) {
2177 final boolean changed = super.setFrame(left, top, right, bottom);
2250 // ... Or bottom of the last element is not visible
2253 canScrollDown = child.getBottom() > mBottom - mListPadding.bottom;
2287 * @return The bottom list padding.
2290 return mListPadding.bottom;
2592 selectorRect.bottom += mSelectionBottomPadding;
2682 protected void internalSetPadding(int left, int top, int right, int bottom) {
2683 super.internalSetPadding(left, top, right, bottom);
2789 mSelectionBottomPadding = padding.bottom;
3719 final int bottom = clipToPadding ? getHeight() - mPaddingBottom : getHeight();
3722 invalidate(left, bottom - mEdgeGlowBottom.getMaxHeight(), right, bottom);
4066 final int contentBottom = getHeight() - mListPadding.bottom;
4720 // List is moving towards the bottom. Use last view as mMotionPosition
4964 // the bottom index is not perceivably visible so offset
4965 // to account for showing that bottom index as well
5035 return lastPosition < mItemCount || lastBottom > getHeight() - listPadding.bottom;
5068 effectivePaddingBottom = listPadding.bottom;
5098 mLastPositionDistanceGuess = lastBottom + listPadding.bottom;
5106 lastBottom <= getHeight() - listPadding.bottom && incrementalDeltaY <= 0);
5146 int bottom = getHeight() - incrementalDeltaY;
5148 bottom -= listPadding.bottom;
5152 if (child.getTop() <= bottom) {
5228 * at the bottom of the list that should not be recycled during a layout.
5343 int childrenBottom = mBottom - mTop - mListPadding.bottom;
5395 final int bottom = v.getBottom();
5399 if (firstPosition + childCount < itemCount || bottom > childrenBottom) {
5404 if (bottom <= childrenBottom) {
5699 sY = source.bottom;
5713 dY = dest.bottom;
6154 * to the bottom to show new items.
7386 final int paddedBottom = getHeight() - mListPadding.bottom;
7420 // Don't scroll the bound view off the bottom of the screen.
7461 Math.max(mListPadding.bottom, mExtraScroll) : mListPadding.bottom;
7492 final int extraScroll = Math.max(mListPadding.bottom, mExtraScroll);
7556 final int bottom = listHeight - extraScroll;
7558 if (bottom > lastViewBottom) {
7559 smoothScrollBy(-(bottom - lastViewBottom), mScrollDuration, true);