Home | History | Annotate | Download | only in widget

Lines Matching defs:TableLayout

34  * A TableLayout consists of a number of {@link android.widget.TableRow} objects,
36 * explained below). TableLayout containers do not display border lines for
43 * column. However, a TableLayout can specify certain columns as shrinkable or
56 * <p>The children of a TableLayout cannot specify the <code>layout_width</code>
59 * is {@link android.widget.TableLayout.LayoutParams#WRAP_CONTENT}. If the child
61 * {@link android.widget.TableLayout.LayoutParams#WRAP_CONTENT}.</p>
67 * TableLayout examples in ApiDemos for examples of creating tables in XML.</p>
69 * <p>Although the typical child of a TableLayout is a TableRow, you can
70 * actually use any View subclass as a direct child of TableLayout. The View
74 public class TableLayout extends LinearLayout {
83 private TableLayout.PassThroughHierarchyChangeListener mPassThroughListener;
88 * <p>Creates a new TableLayout for the given context.</p>
92 public TableLayout(Context context) {
98 * <p>Creates a new TableLayout for the given context and with the
104 public TableLayout(Context context, AttributeSet attrs) {
107 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.TableLayout);
640 return new TableLayout.LayoutParams(getContext(), attrs);
658 return p instanceof TableLayout.LayoutParams;
672 event.setClassName(TableLayout.class.getName());
678 info.setClassName(TableLayout.class.getName());