Tiny fix in CellLayout

Change-Id: Idc5fcbb7f6e8e2b104fe1eb0e02579e5751214cf
This commit is contained in:
Adam Cohen
2011-04-26 16:48:26 -07:00
parent 7f4eabe370
commit bb60e2e4d7
+1 -1
View File
@@ -853,7 +853,7 @@ public class CellLayout extends ViewGroup {
int count = getChildCount();
for (int i = 0; i < count; i++) {
View child = getChildAt(i);
child.layout(mLeftPadding, mTopPadding, r - mRightPadding , b - mBottomPadding);
child.layout(mLeftPadding, mTopPadding, r - l - mRightPadding , b - t - mBottomPadding);
}
}