diff options
| author | Philip Milne <pmilne@google.com> | 2011-06-29 11:09:45 -0700 |
|---|---|---|
| committer | Philip Milne <pmilne@google.com> | 2011-07-01 11:08:19 -0700 |
| commit | 48b55244d286b6d4e3699a5d9e938a9c87aaae75 (patch) | |
| tree | e17d0c267f99ada221ec2b3eaf4a507e4a911a8b /tests/GridLayoutTest/res | |
| parent | 748d9f2fe4db14d1f0f140a92ff7e6cc27dcd732 (diff) | |
| download | frameworks_base-48b55244d286b6d4e3699a5d9e938a9c87aaae75.zip frameworks_base-48b55244d286b6d4e3699a5d9e938a9c87aaae75.tar.gz frameworks_base-48b55244d286b6d4e3699a5d9e938a9c87aaae75.tar.bz2 | |
Support for maximum values in layout GridLayout.
A cell's ability to shrink or stretch is now integrated with the
constraints system, which is now supplied with both upper and lower
bounds.
Also:
. Remove package private access (pseudo) annotation
. Remove rowWeight and columnWeight attributes and fields
. Remove code to handle weights
Change-Id: I9e2432101d15466c621f51ae362435051fab5764
Diffstat (limited to 'tests/GridLayoutTest/res')
| -rw-r--r-- | tests/GridLayoutTest/res/layout/grid3.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/GridLayoutTest/res/layout/grid3.xml b/tests/GridLayoutTest/res/layout/grid3.xml index ba911c2..536be7e 100644 --- a/tests/GridLayoutTest/res/layout/grid3.xml +++ b/tests/GridLayoutTest/res/layout/grid3.xml @@ -66,8 +66,8 @@ <Space android:layout_row="4" android:layout_column="2" - android:layout_rowWeight="1" - android:layout_columnWeight="1" + android:layout_heightSpec="canStretch" + android:layout_widthSpec="canStretch" /> <Button |
