| java.lang.Object | ||
| ↳ | android.view.ViewGroup.LayoutParams | |
| ↳ | android.widget.AbsoluteLayout.LayoutParams | |
Per-child layout information associated with AbsoluteLayout.
See
Absolute Layout Attributes
for a list of all child view attributes that this class supports.
|
[Expand]
Inherited XML Attributes | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
| |||||||||||
|
[Expand]
Inherited Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
| |||||||||||
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| x | The horizontal, or X, location of the child within the view group. | ||||||||||
| y | The vertical, or Y, location of the child within the view group. | ||||||||||
|
[Expand]
Inherited Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
| |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new set of layout parameters with the specified width,
height and location.
| |||||||||||
Creates a new set of layout parameters.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Returns a String representation of this set of layout parameters.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
| |||||||||||
|
| |||||||||||
The horizontal, or X, location of the child within the view group.
Creates a new set of layout parameters with the specified width, height and location.
| Parameters | |
|---|---|
width |
int:
the width, either MATCH_PARENT,
WRAP_CONTENT or a fixed size in pixels |
height |
int:
the height, either MATCH_PARENT,
WRAP_CONTENT or a fixed size in pixels |
x |
int:
the X location of the child |
y |
int:
the Y location of the child
|
Creates a new set of layout parameters. The values are extracted from the supplied attributes set and context. The XML attributes mapped to this set of layout parameters are:
layout_x: the X location of the childlayout_y: the Y location of the childViewGroup.LayoutParams| Parameters | |
|---|---|
c |
Context:
the application environment |
attrs |
AttributeSet:
the set of attributes from which to extract the layout
parameters values
|
| Parameters | |
|---|---|
source |
ViewGroup.LayoutParams
|
Returns a String representation of this set of layout parameters.
| Parameters | |
|---|---|
output |
String:
the String to prepend to the internal representation |
| Returns | |
|---|---|
String |
a String with the following format: output + "ViewGroup.LayoutParams={ width=WIDTH, height=HEIGHT }" |