Lines Matching defs:column

45  * <p>StaggeredGridView presents a multi-column grid with consistent column sizes
79 * view has been removed. These let positioning and the choice of column for an item
136 public int column;
145 // all layoutrecords are purged when column count changes.
182 String result = "LayoutRecord{c=" + column + ", id=" + id + " h=" + height +
246 * Set a minimum column width for
508 // Repair the top and bottom column boundaries from the views we still have
519 final int colEnd = lp.column + Math.min(mColCount, lp.span);
520 for (int col = lp.column; col < colEnd; col++) {
521 final int colTop = top - rec.getMarginAbove(col - lp.column);
522 final int colBottom = bottom + rec.getMarginBelow(col - lp.column);
706 Log.d(TAG, "!!! No top item found for column " + i + " value " + mItemTops[i]);
720 Log.d(TAG, "!!! No bottom item found for column " + i + " value " + mItemBottoms[i]);
760 final int col = lp.column;
849 rec.column = lp.column;
911 nextCol = rec.column;
920 rec.column = nextCol;
924 rec.column = nextCol;
927 nextCol = rec.column;
936 lp.column = nextCol;
1025 nextCol = rec.column;
1034 rec.column = nextCol;
1038 rec.column = nextCol;
1041 nextCol = rec.column;
1050 lp.column = nextCol;
1103 * @return column that the next view filling upwards should occupy. This is the bottom-most
1104 * position available for a single-column item.
1155 rec.column = targetCol;
1165 * @return column that the next view filling downwards should occupy. This is the top-most
1211 rec.column = targetCol;
1406 * The column this view is occupying
1408 int column;