Home | History | Annotate | Download | only in widget

Lines Matching refs:verticalSpacing

247         final int verticalSpacing = mVerticalSpacing;
257 getChildAt(count - 1).getBottom() + verticalSpacing : paddingTop;
263 correctTooHigh(numColumns, verticalSpacing, getChildCount());
270 getChildAt(0).getTop() - verticalSpacing : getHeight() - paddingBottom;
278 correctTooLow(numColumns, verticalSpacing, getChildCount());
453 final int verticalSpacing = mVerticalSpacing;
476 fillDown(rowStart + numColumns, referenceView.getBottom() + verticalSpacing);
478 fillUp(rowStart - numColumns, referenceView.getTop() - verticalSpacing);
485 verticalSpacing);
487 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing);
574 final int verticalSpacing = mVerticalSpacing;
580 above = fillUp(motionRowStart - numColumns, referenceView.getTop() - verticalSpacing);
582 below = fillDown(motionRowStart + numColumns, referenceView.getBottom() + verticalSpacing);
586 correctTooHigh(numColumns, verticalSpacing, childCount);
589 below = fillDown(motionRowEnd + numColumns, referenceView.getBottom() + verticalSpacing);
591 above = fillUp(motionRowStart - 1, referenceView.getTop() - verticalSpacing);
595 correctTooLow(numColumns, verticalSpacing, childCount);
608 private void correctTooHigh(int numColumns, int verticalSpacing, int childCount) {
641 firstChild.getTop() - verticalSpacing);
649 private void correctTooLow(int numColumns, int verticalSpacing, int childCount) {
684 lastChild.getBottom() + verticalSpacing);
706 final int verticalSpacing = mVerticalSpacing;
736 fillUp(rowStart - numColumns, referenceView.getTop() - verticalSpacing);
738 fillDown(rowStart + numColumns, referenceView.getBottom() + verticalSpacing);
740 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing);
742 fillUp(rowStart - 1, referenceView.getTop() - verticalSpacing);
878 final int verticalSpacing = mVerticalSpacing;
919 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, oldBottom + verticalSpacing, true);
930 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, oldTop - verticalSpacing, false);
946 fillUp(rowStart - numColumns, referenceView.getTop() - verticalSpacing);
948 fillDown(rowStart + numColumns, referenceView.getBottom() + verticalSpacing);
950 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing);
952 fillUp(rowStart - 1, referenceView.getTop() - verticalSpacing);
2112 * @param verticalSpacing The amount of vertical space between items,
2119 public void setVerticalSpacing(int verticalSpacing) {
2120 if (verticalSpacing != mVerticalSpacing) {
2121 mVerticalSpacing = verticalSpacing;