Most visited

Recently visited

Added in API level 1

TableRow.LayoutParams

public static class TableRow.LayoutParams
extends LinearLayout.LayoutParams

java.lang.Object
   ↳ android.view.ViewGroup.LayoutParams
     ↳ android.view.ViewGroup.MarginLayoutParams
       ↳ android.widget.LinearLayout.LayoutParams
         ↳ android.widget.TableRow.LayoutParams


Set of layout parameters used in table rows.

See also:

Summary

XML attributes

android:layout_column The index of the column in which this child should be. 
android:layout_span Defines how many columns this child should span. 

Inherited XML attributes

From class android.widget.LinearLayout.LayoutParams
From class android.view.ViewGroup.MarginLayoutParams
From class android.view.ViewGroup.LayoutParams

Inherited constants

From class android.view.ViewGroup.LayoutParams

Fields

public int column

The column index of the cell represented by the widget.

public int span

The number of columns the widgets spans over.

Inherited fields

From class android.widget.LinearLayout.LayoutParams
From class android.view.ViewGroup.MarginLayoutParams
From class android.view.ViewGroup.LayoutParams

Public constructors

TableRow.LayoutParams(Context c, AttributeSet attrs)

TableRow.LayoutParams(int w, int h)

Sets the child width and the child height.

TableRow.LayoutParams(int w, int h, float initWeight)

Sets the child width, height and weight.

TableRow.LayoutParams()

Sets the child width to ViewGroup.LayoutParams and the child height to WRAP_CONTENT.

TableRow.LayoutParams(int column)

Puts the view in the specified column.

TableRow.LayoutParams(ViewGroup.LayoutParams p)

TableRow.LayoutParams(ViewGroup.MarginLayoutParams source)

Protected methods

void setBaseAttributes(TypedArray a, int widthAttr, int heightAttr)

Extracts the layout parameters from the supplied attributes.

Inherited methods

From class android.widget.LinearLayout.LayoutParams
From class android.view.ViewGroup.MarginLayoutParams
From class android.view.ViewGroup.LayoutParams
From class java.lang.Object

XML attributes

android:layout_column

The index of the column in which this child should be.

Must be an integer value, such as "100".

This may also be a reference to a resource (in the form "@[package:]type:name") or theme attribute (in the form "?[package:][type:]name") containing a value of this type.

This corresponds to the global attribute resource symbol layout_column.

android:layout_span

Defines how many columns this child should span. Must be >= 1.

Must be an integer value, such as "100".

This may also be a reference to a resource (in the form "@[package:]type:name") or theme attribute (in the form "?[package:][type:]name") containing a value of this type.

This corresponds to the global attribute resource symbol layout_span.

Fields

column

Added in API level 1
int column

The column index of the cell represented by the widget.

span

Added in API level 1
int span

The number of columns the widgets spans over.

Public constructors

TableRow.LayoutParams

Added in API level 1
TableRow.LayoutParams (Context c, 
                AttributeSet attrs)

Parameters
c Context
attrs AttributeSet

TableRow.LayoutParams

Added in API level 1
TableRow.LayoutParams (int w, 
                int h)

Sets the child width and the child height.

Parameters
w int: the desired width
h int: the desired height

TableRow.LayoutParams

Added in API level 1
TableRow.LayoutParams (int w, 
                int h, 
                float initWeight)

Sets the child width, height and weight.

Parameters
w int: the desired width
h int: the desired height
initWeight float: the desired weight

TableRow.LayoutParams

Added in API level 1
TableRow.LayoutParams ()

Sets the child width to ViewGroup.LayoutParams and the child height to WRAP_CONTENT.

TableRow.LayoutParams

Added in API level 1
TableRow.LayoutParams (int column)

Puts the view in the specified column.

Sets the child width to MATCH_PARENT and the child height to WRAP_CONTENT.

Parameters
column int: the column index for the view

TableRow.LayoutParams

Added in API level 1
TableRow.LayoutParams (ViewGroup.LayoutParams p)

Parameters
p ViewGroup.LayoutParams

TableRow.LayoutParams

Added in API level 1
TableRow.LayoutParams (ViewGroup.MarginLayoutParams source)

Parameters
source ViewGroup.MarginLayoutParams

Protected methods

setBaseAttributes

Added in API level 1
void setBaseAttributes (TypedArray a, 
                int widthAttr, 
                int heightAttr)

Extracts the layout parameters from the supplied attributes.

Parameters
a TypedArray: the style attributes to extract the parameters from
widthAttr int: the identifier of the width attribute
heightAttr int: the identifier of the height attribute

Hooray!