Home | History | Annotate | Download | only in widget

Lines Matching defs:TableLayout

32  * A TableLayout consists of a number of {@link android.widget.TableRow} objects,
34 * explained below). TableLayout containers do not display border lines for
41 * column. However, a TableLayout can specify certain columns as shrinkable or
54 * <p>The children of a TableLayout cannot specify the <code>layout_width</code>
57 * is {@link android.widget.TableLayout.LayoutParams#WRAP_CONTENT}. If the child
59 * {@link android.widget.TableLayout.LayoutParams#WRAP_CONTENT}.</p>
65 * TableLayout examples in ApiDemos for examples of creating tables in XML.</p>
67 * <p>Although the typical child of a TableLayout is a TableRow, you can
68 * actually use any View subclass as a direct child of TableLayout. The View
72 public class TableLayout extends LinearLayout {
81 private TableLayout.PassThroughHierarchyChangeListener mPassThroughListener;
86 * <p>Creates a new TableLayout for the given context.</p>
90 public TableLayout(Context context) {
96 * <p>Creates a new TableLayout for the given context and with the
102 public TableLayout(Context context, AttributeSet attrs) {
105 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.TableLayout);
638 return new TableLayout.LayoutParams(getContext(), attrs);
656 return p instanceof TableLayout.LayoutParams;
669 return TableLayout.class.getName();
723 if (source instanceof TableLayout.LayoutParams) {
724 weight = ((TableLayout.LayoutParams) source).weight;