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
MATCH_PARENT and the height of each child to be
WRAP_CONTENT, but only if the height is not specified.
Inherited XML attributes | |
|---|---|
android.widget.LinearLayout.LayoutParams
| |
android.view.ViewGroup.MarginLayoutParams
| |
android.view.ViewGroup.LayoutParams
| |
Inherited constants |
|---|
android.view.ViewGroup.LayoutParams
|
Inherited fields |
|---|
android.widget.LinearLayout.LayoutParams
|
android.view.ViewGroup.MarginLayoutParams
|
android.view.ViewGroup.LayoutParams
|
Public constructors | |
|---|---|
TableLayout.LayoutParams(Context c, AttributeSet attrs)
|
|
TableLayout.LayoutParams(int w, int h)
|
|
TableLayout.LayoutParams(int w, int h, float initWeight)
|
|
TableLayout.LayoutParams()
Sets the child width to
|
|
TableLayout.LayoutParams(ViewGroup.LayoutParams p)
|
|
TableLayout.LayoutParams(ViewGroup.MarginLayoutParams source)
|
|
Protected methods | |
|---|---|
void
|
setBaseAttributes(TypedArray a, int widthAttr, int heightAttr)
Fixes the row's width to
|
Inherited methods | |
|---|---|
android.widget.LinearLayout.LayoutParams
| |
android.view.ViewGroup.MarginLayoutParams
| |
android.view.ViewGroup.LayoutParams
| |
java.lang.Object
| |
TableLayout.LayoutParams (Context c, AttributeSet attrs)
| Parameters | |
|---|---|
c |
Context
|
attrs |
AttributeSet
|
TableLayout.LayoutParams (int w,
int h)
| Parameters | |
|---|---|
w |
int
|
h |
int
|
TableLayout.LayoutParams (int w,
int h,
float initWeight)
| Parameters | |
|---|---|
w |
int
|
h |
int
|
initWeight |
float
|
TableLayout.LayoutParams ()
Sets the child width to
ViewGroup.LayoutParams and the child height to
WRAP_CONTENT.
TableLayout.LayoutParams (ViewGroup.LayoutParams p)
| Parameters | |
|---|---|
p |
ViewGroup.LayoutParams
|
TableLayout.LayoutParams (ViewGroup.MarginLayoutParams source)
| Parameters | |
|---|---|
source |
ViewGroup.MarginLayoutParams
|
void setBaseAttributes (TypedArray a, int widthAttr, int heightAttr)
Fixes the row's width to
MATCH_PARENT; the row's
height is fixed to
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
|