Home | History | Annotate | Download | only in cts

Lines Matching defs:TableLayout

46 import android.widget.TableLayout;
56 * Test {@link TableLayout}.
62 private TableLayout mTableDefault;
63 private TableLayout mTableEmpty;
73 mTableDefault = (TableLayout) mActivity.findViewById(R.id.table1);
74 mTableEmpty = (TableLayout) mActivity.findViewById(R.id.table_empty);
81 new TableLayout(mActivity);
83 new TableLayout(mActivity, null);
89 TableLayout tableLayout = (TableLayout) mActivity.findViewById(R.id.table2);
90 assertTrue(tableLayout.isColumnShrinkable(1));
482 mTableEmpty.addView(null, new TableLayout.LayoutParams(200, 300));
545 new TableLayout.LayoutParams(200, 300));
551 mTableEmpty.addView(null, -1, new TableLayout.LayoutParams(200, 300));
574 assertTrue(mTableCustomEmpty.checkLayoutParams(new TableLayout.LayoutParams(200, 300)));
588 assertTrue(layoutParams instanceof TableLayout.LayoutParams);
599 assertTrue(layoutParams instanceof TableLayout.LayoutParams);
621 * Mock class for TableLayout to test protected methods
623 public static class MockTableLayout extends TableLayout {