summaryrefslogtreecommitdiffstats
path: root/tests/GridLayoutTest
Commit message (Collapse)AuthorAgeFilesLines
* Replace wildcard imports with explicit importsTor Norbye2013-09-134-6/+25
| | | | | | | The wildcard imports interfered with the new typedef annotations (and 99% of the tests were using explicit imports anyway.) Change-Id: I3784b9d700131fe4a0ba30283f052820b2fa5122
* am 58ed5d74: am 768d9e1a: Merge "Correct executable bit for source files"Kenny Root2012-11-071-0/+0
|\ | | | | | | | | * commit '58ed5d748c0b9b64845975ef5844ad313de7c3f6': Correct executable bit for source files
| * Correct executable bit for source filesKenny Root2012-11-071-0/+0
| | | | | | | | | | | | | | | | | | Many media files and source code files were marked as executable in Git. Remove those. Also a shell script and python script were not marked as executable. Change-Id: Ieb51bafb46c895a21d2e83696f5a901ba752b2c5
* | Bug #6110465. Optical bounds support for all ViewGroup subclasses.Philip Milne2012-09-211-3/+2
|/ | | | | | | | | | | | | | This CL generalizes the optical bounds support previously contained in the GridLayout implementation and then incorporates the new form directly into the base View and ViewGroup implementations. After this change, GridLayout is returned to an 'optical bounds' unaware state, and all layouts (including non-platform ones) inherit the ability to perform their layout operation by optical (rather than clip) bounds using their existing implementations. The "layoutMode" property of ViewGroup and its associated constants are made public in this CL. Change-Id: Ic1bba0e1c6fc14da4aeab0b28c975d562b5f82dd
* Fixes for optical bounds feature.Philip Milne2012-04-277-61/+31
| | | | | | | | | | 1. Make the feature opt-in (ViewGroup::layoutMode defaults to CLIP_BOUNDS) without inheritance. 2. Rename COMPONENT_BOUNDS to CLIP_BOUNDS. 3. Rename LAYOUT_BOUNDS to OPTICAL_BOUNDS. 4. Complete GridLayout implementation. 5. Change the default_gap between components to 8dp, to align with the Style Guide. Change-Id: I8d40dfc5f4ca469f6424eb3ff60d07bec56e3a9f
* Promote layout debugging code from GridLayout to ViewGroup.Philip Milne2012-04-231-9/+0
| | | | | | | | | | | | | | Layout debugging code draws rectangles around: 1. Layout insets (red) 2. Bounds (blue) 3. Margins (magenta) Layout debug mode is enabled with: adb shell setprop debug.layout true Change-Id: Ia155a2d0fbf33693a1e3c040f627ea3a534e1aff
* Share Insets instances between views that have the same background (Drawable)Philip Milne2012-04-181-0/+7
| | | | Change-Id: I47d93ccca6f553b678d25966d10d7a0a97cfa5ea
* Fix for bug 6110465.Philip Milne2012-04-139-1/+100
| | | | | | | | | | | | | | | | Add layout bound metadata to 9-patch files and make layouts take them into account. This CL contains a proposed API for dealing with layout bounds. This solution exposes: 1. Class: Insets - for storing layout Insets (and later possibly padding). 2. Methods: View:(get/set)LayoutInsets() - for storing layoutBounds. 3. Methods: ViewGroup:(get/set)LayoutMode() - for controlling layoutMode. It also iuncudes the changes to GridLayout to support layout bounds. Change-Id: I60c836b6530b61c5abf37f93ee9c44aad73573f1
* Move Activity1 and Activity2 to API Demos area in development/samples.Philip Milne2011-10-064-244/+0
| | | | Change-Id: Ib6521caca69b0a0d96c66d9df754d2af17cb6908
* Remove call to setPadding() in setUseDefaultMargins().Philip Milne2011-08-052-16/+9
| | | | | | | | | | It is not possible for teh user to override the assigned padding values because the XML attributes are processed in the opposite order. Also, make the XML and Java examples grid3.xml and Activity2.java consistent in preparation for a move to API demos. Change-Id: I47334f9f5a46a8a528067d88350dd70eaa38ff33
* Fix for http://b/issue?id=5081478Philip Milne2011-08-021-35/+37
| | | | | | | | | | | | | | GridLayout needs to call measure on children after it knows how large children should be Also: . Remove deprecated methods and XML attributes. . Stop Spaces having margins by default. . Remove getSpacers() and findUsed() . Change default for row/columnOrderPreserved() from false to true. . Improve automatic index allocation mechanism to use individual maxima. Change-Id: Id79fbb2e70a0bf2002191ec2a9746547d896de72
* Fix for http://b/issue?id=5064532Philip Milne2011-07-252-21/+23
| | | | | | | | | | | | | | | | 5064532: GridLayout with initial "stretchy" row and "gone" view in last row doesn't stretch properly Also: . Infer stretchibility from whether or not gravity is defined. . Make algorithms for handling flexibility within cell groups consistent with those acting between cells groups (via constraint system). . Hide and deprecate methods taking flexibility argument. . Hide and deprecate CAN_STRETCH constant. Both deprecated features will be removed after references are removed from platform. Change-Id: Iabf2bf19f35cf30b8ec49c99b49a0550fd495125
* Derive GridLayout's 'gap' constants from new "default_gap" entry in dimens.xml.Philip Milne2011-07-181-3/+1
| | | | | | | | | | | | Also: . removed static import of R.styleable - this is non-standard . removed final modifier from DEBUG flag, this prevents the compiler from excluding the debugging code but allows debugging code to be enabled externally . added override to removeAllViews() as GridLayout needs to be notified whever hiearchy changes. Change-Id: I2409289bce7c6638eff320ffd48a6c0704e77fa8
* Rationalize API after adding maximum size feature.Philip Milne2011-07-133-24/+18
| | | | | | | | | | | | | | | | . Change name of Group to Spec (with the addition of the fglexibility field, this class no longer represents a group) . Replace overloaded Group/Spec constructors with factory method . Bugfix for measure() when alignmentMode == ALIGN_BOUNDS . Bury as much Java API as possible, to minimize restrictions on future API enhancements - make all field access in Group package private - use factory methods in place of field assignment Change-Id: I46a5027a013bf7c3110b77108b8fd0427165cd18
* Simplify and tidy the API for maximum value support.Philip Milne2011-07-072-4/+4
| | | | | | | | Also: . Remove CAN_SHRINK, FIXED from public view. These can be added later. Change-Id: I63a64ac4748605da60373c8e3c2109178b5260c2
* Support for maximum values in layout GridLayout.Philip Milne2011-07-012-4/+4
| | | | | | | | | | | | | | 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
* Handle baseline aligned rows in which some components define baseline and ↵Philip Milne2011-06-231-49/+19
| | | | | | | | | | | some don't. Also: . Make all of the methods in Alignment package private. . Inlucde Tor's test case Change-Id: If78a6a3b653723d9e12d6b162fd0c86b11a82dff
* Change includeMarginsInAlignment flag to aligmentMode property.Philip Milne2011-06-162-2/+2
| | | | | | | | | | Also: . Change getInteger() to getInt(). . Conditionally compile, Paint() allocation and initialization. . Correct spelling mistake in javadoc. Change-Id: I00438a717e635a3917c5324f56063dce2e6041e8
* Bugfix for GridLayout assuming that the x value of last column index is ↵Philip Milne2011-06-132-18/+22
| | | | | | maximal. This is not the case when column indexes are defined incorrectly and GridLayout should still work in this case. Change-Id: I5deb3fb43ed1dd16dd20868854b96ebae4d30623
* Optimise the way that indices are auto-allocated so that XML files can ↵Philip Milne2011-06-103-39/+42
| | | | | | normally avoid using indices. Change-Id: Iafb25b17fec9391664c81a7e213eeaa918254912
* Fix for baseline alignment in LinearLayout compatibiity mode.Philip Milne2011-06-093-11/+13
| | | | Change-Id: Iaa194537c1bc493172fab89624279fe5cbfa1f70
* Response to code review for GridLayout:Philip Milne2011-06-036-0/+311
| | | | | | | | | | | | | | | | . Fixed spelling. . Added comments on internal methods. . Adopted the suggested internal name changes to improve clarity. . Added UNDEFINED constant to public API to avoid making reference to Integer.MAX_VALUE in docs. . Added final everywhere, then removed it. . Make the Interval class package private so that it can be put somewhere more general later. . Tidy code, removing maximize flag throughout. . Remove last of allocations taking place during layout. . Implement measureChild() etc. . Added LinearLayout alignment compatibility mode, and made it the default. Change-Id: I6a4ffa022d97d68138d1903d3830a20278815435 https://android-git.corp.google.com/g/#change,109891
* Introduction of GridLayout.Philip Milne2011-05-2616-0/+740
Change-Id: Ia2ec315e7d29dcc5aa13b080fc6ce00708e9c034