Home | History | Annotate | Download | only in grid

Lines Matching refs:newView

907         INode newView = addColumn(newColumn, null, UNDEFINED, false, UNDEFINED, UNDEFINED);
908 if (newView != null) {
909 mRulesEngine.select(Collections.singletonList(newView));
912 return newView;
919 * @param newView the {@link INode} to insert as the column spacer, which may be null
924 * @param row the row to add the newView to
928 public INode addColumn(int newColumn, INode newView, int columnWidthDp,
952 if (newView == null && !isLastColumn) {
968 newView = newViewData.node;
1006 assert newView == null;
1013 return newView;
1120 INode newView = addRow(newRow, null, UNDEFINED, false, UNDEFINED, UNDEFINED);
1121 if (newView != null) {
1122 mRulesEngine.select(Collections.singletonList(newView));
1125 return newView;
1132 * @param newView the {@link INode} to insert as the row spacer, which may be null (in
1137 * @param column the column to add the newView to
1141 public INode addRow(int newRow, INode newView, int rowHeightDp, boolean split,
1155 if (newView == null) {
1168 newView = newViewData.node;
1199 if (newView == null) {
1206 newView = newViewData.node;
1212 setGridAttribute(newView, ATTR_LAYOUT_ROW, newRow - 1);
1213 setGridAttribute(newView, ATTR_LAYOUT_COLUMN, column);
1217 return newView;