Home | History | Annotate | Download | only in widget

Lines Matching refs: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
71 * <p>See the <a href="{@docRoot}resources/tutorials/views/hello-tablelayout.html">Table
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);
632 return new TableLayout.LayoutParams(getContext(), attrs);
650 return p instanceof TableLayout.LayoutParams;