# Print output for @column tags ?>
public
static
class
TableLayout.LayoutParams
extends LinearLayout.LayoutParams
java.lang.Object | ||||
↳ | android.view.ViewGroup.LayoutParams | |||
↳ | android.view.ViewGroup.MarginLayoutParams | |||
↳ | android.widget.LinearLayout.LayoutParams | |||
↳ | android.widget.TableLayout.LayoutParams |
This set of layout parameters enforces the width of each child to be
ViewGroup.LayoutParams.MATCH_PARENT
and the height of each child to be
ViewGroup.LayoutParams.WRAP_CONTENT
, but only if the height is not specified.
Inherited XML attributes | |
---|---|
Inherited constants |
---|
Inherited fields |
---|
Public constructors | |
---|---|
LayoutParams(Context c, AttributeSet attrs)
|
|
LayoutParams(int w, int h)
|
|
LayoutParams(int w, int h, float initWeight)
|
|
LayoutParams()
Sets the child width to
|
|
LayoutParams(ViewGroup.LayoutParams p)
|
|
LayoutParams(ViewGroup.MarginLayoutParams source)
|
Protected methods | |
---|---|
void
|
setBaseAttributes(TypedArray a, int widthAttr, int heightAttr)
Fixes the row's width to
|
Inherited methods | |
---|---|
public LayoutParams (Context c, AttributeSet attrs)
Parameters | |
---|---|
c |
Context |
attrs |
AttributeSet |
public LayoutParams (int w, int h)
Parameters | |
---|---|
w |
int |
h |
int |
public LayoutParams (int w, int h, float initWeight)
Parameters | |
---|---|
w |
int |
h |
int |
initWeight |
float |
public LayoutParams ()
Sets the child width to
ViewGroup.LayoutParams
and the child height to
ViewGroup.LayoutParams.WRAP_CONTENT
.
public LayoutParams (ViewGroup.MarginLayoutParams source)
Parameters | |
---|---|
source |
ViewGroup.MarginLayoutParams |
protected void setBaseAttributes (TypedArray a, int widthAttr, int heightAttr)
Fixes the row's width to
ViewGroup.LayoutParams.MATCH_PARENT
; the row's
height is fixed to
ViewGroup.LayoutParams.WRAP_CONTENT
if no layout
height is specified.
Parameters | |
---|---|
a |
TypedArray : the styled attributes set |
widthAttr |
int : the width attribute to fetch |
heightAttr |
int : the height attribute to fetch |