Android
android.widget
public static class

android.widget.TableRow.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.

Summary

XML Attributes

Attribute name Related methods  
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. 
XML Attributes inherited from class android.widget.LinearLayout.LayoutParams
XML Attributes inherited from class android.view.ViewGroup.MarginLayoutParams
XML Attributes inherited from class android.view.ViewGroup.LayoutParams
Constants inherited 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. 

Fields inherited from class android.widget.LinearLayout.LayoutParams
Fields inherited from class android.view.ViewGroup.MarginLayoutParams
Fields inherited 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.
Methods inherited from class android.widget.LinearLayout.LayoutParams
Methods inherited from class android.view.ViewGroup.MarginLayoutParams
Methods inherited from class android.view.ViewGroup.LayoutParams
Methods inherited from class java.lang.Object

Details

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.

Related Methods

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.

Related Methods

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.

Public Constructors

public TableRow.LayoutParams(Context c, AttributeSet attrs)

public TableRow.LayoutParams(int w, int h)

Sets the child width and the child height.

Parameters

w the desired width
h the desired height

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

Sets the child width, height and weight.

Parameters

w the desired width
h the desired height
initWeight the desired weight

public TableRow.LayoutParams()

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

public TableRow.LayoutParams(int column)

Puts the view in the specified column.

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

Parameters

column the column index for the view

public TableRow.LayoutParams(ViewGroup.LayoutParams p)

public TableRow.LayoutParams(ViewGroup.MarginLayoutParams source)

Protected Methods

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

Extracts the layout parameters from the supplied attributes.

Parameters

a the style attributes to extract the parameters from
widthAttr the identifier of the width attribute
heightAttr the identifier of the height attribute
Copyright 2007 Google Inc. Build 0.9_r1-98467 - 14 Aug 2008 18:48