Deprecate fill_parent and introduce match_parent.

Bug: #2361749.
This commit is contained in:
Romain Guy
2010-01-08 15:07:00 -08:00
parent 677298ac89
commit 8f19cdd62f
19 changed files with 44 additions and 44 deletions

View File

@@ -901,7 +901,7 @@ out: for (int i = x; i < x + spanX - 1 && x < xCount; i++) {
}
public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
super(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);
super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
this.cellX = cellX;
this.cellY = cellY;
this.cellHSpan = cellHSpan;