HomeSort by relevance Sort by last modified time
    Searched refs:TableLayout (Results 1 - 25 of 60) sorted by null

1 2 3

  /frameworks/layoutlib/create/tests/mock_data/mock_android/widget/
TableLayout.java 21 public class TableLayout extends ViewGroup {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/mock_android/widget/
TableLayout.java 21 public class TableLayout extends ViewGroup {
  /cts/tests/tests/widget/src/android/widget/cts/
TableLayout_LayoutParamsTest.java 31 import android.widget.TableLayout;
40 * Test {@link TableLayout.LayoutParams}.
54 // We expect width to be MATCH and height to be WRAP as documented in TableLayout
55 TableLayout.LayoutParams layoutParams = new TableLayout.LayoutParams();
56 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, layoutParams.width);
57 assertEquals(TableLayout.LayoutParams.WRAP_CONTENT, layoutParams.height);
59 // We expect width to be MATCH and height to be WRAP as documented in TableLayout
60 layoutParams = new TableLayout.LayoutParams(mContext, null);
61 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, layoutParams.width)
    [all...]
TableRow_LayoutParamsTest.java 34 import android.widget.TableLayout;
103 TableLayout tableLayout = (TableLayout) mActivity.findViewById(idTable);
104 View vVirtual1 = ((TableRow) tableLayout.getChildAt(0)).getVirtualChildAt(1);
107 View vVirtual2 = ((TableRow) tableLayout.getChildAt(0)).getVirtualChildAt(2);
146 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, mockLayoutParams.width);
147 assertEquals(TableLayout.LayoutParams.WRAP_CONTENT, mockLayoutParams.height);
151 assertEquals(TableLayout.LayoutParams.WRAP_CONTENT, mockLayoutParams.width);
152 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, mockLayoutParams.height)
    [all...]
TableRowTest.java 44 import android.widget.TableLayout;
103 TableLayout tableLayout = (TableLayout) mActivity
106 TableRow tableRow = (TableRow) tableLayout.getChildAt(0);
116 tableLayout = (TableLayout) mActivity.findViewById(android.widget.cts.R.id.table2);
118 tableRow = (TableRow) tableLayout.getChildAt(0);
134 TableLayout tableLayout = (TableLayout) mActivit
    [all...]
LayoutDirectionTest.java 36 import android.widget.TableLayout;
66 checkDefaultDirectionForOneLayoutWithCode(new TableLayout(mActivity));
92 verifyDirectionForOneLayoutWithCode(new TableLayout(mActivity));
120 verifyDirectionInheritanceForOneLayoutWithCode(new TableLayout(mActivity));
TableLayoutTest.java 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)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
TableLayout8.java 22 import android.widget.TableLayout;
40 final TableLayout table = (TableLayout) findViewById(R.id.menu);
54 private void appendRow(TableLayout table) {
69 table.addView(row, new TableLayout.LayoutParams());
TableLayout9.java 22 import android.widget.TableLayout;
37 final TableLayout table = (TableLayout) findViewById(R.id.menu);
TableLayout7.java 26 import android.widget.TableLayout;
41 final TableLayout table = (TableLayout) findViewById(R.id.menu);
63 private void appendRow(TableLayout table) {
78 table.addView(row, new TableLayout.LayoutParams());
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
AddColumn.java 25 import android.widget.TableLayout;
41 final TableLayout table = (TableLayout) findViewById(R.id.table);
49 table.addView(newRow, new TableLayout.LayoutParams());
AddColumnTest.java 26 import android.widget.TableLayout;
35 private TableLayout mTable;
47 mTable = (TableLayout) activity.findViewById(R.id.table);
  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
TableLayoutBindingAdapter.java 20 import android.widget.TableLayout;
31 public static void setCollapseColumns(TableLayout view, CharSequence columnsStr) {
42 public static void setShrinkColumns(TableLayout view, CharSequence columnsStr) {
60 public static void setStretchColumns(TableLayout view, CharSequence columnsStr) {
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
TableLayoutBindingAdapterTest.java 23 import android.widget.TableLayout;
28 TableLayout mView;
  /frameworks/layoutlib/create/tests/data/
mock_android.jar 
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
ResultActivity.java 36 import android.widget.TableLayout;
178 TableLayout table = (TableLayout)findViewById(R.id.table);
188 TableLayout table = (TableLayout)findViewById(R.id.table);
190 TableLayout.LayoutParams params = new TableLayout.LayoutParams();
  /frameworks/base/core/java/android/widget/
TableLayout.java 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
    [all...]
  /sdk/testapps/testSensors/src/com/android/tests/testsensors/
TestSensorsActivity.java 29 import android.widget.TableLayout;
38 private TableLayout mTableLayout;
207 mTableLayout = (TableLayout) findViewById(R.id.tableLayout);
  /frameworks/opt/colorpicker/src/com/android/colorpicker/
ColorPickerPalette.java 25 import android.widget.TableLayout;
34 public class ColorPickerPalette extends TableLayout {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/sdk/
LayoutParamsParserTest.java 97 assertEquals(mock_android.widget.TableLayout.LayoutParams.class,
98 ((ClassWrapper)_findLayoutParams(mock_android.widget.TableLayout.class)).wrappedClass());
115 mock_android.widget.TableLayout.LayoutParams.class);
117 // TableLayout.LayoutData does not link to ViewGroup.LayoutParams nor
121 // TableLayout.LayoutParams => ViewGroup.MarginLayoutParams => ViewGroup.LayoutParams
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
SensorActivity.java 33 import android.widget.TableLayout;
59 private TableLayout mTableLayout;
77 mTableLayout = (TableLayout) findViewById(R.id.tableLayout);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
UserDictionaryToolsList.java 43 import android.widget.TableLayout;
104 private TableLayout mTableLayout;
175 mTableLayout = (TableLayout)findViewById(R.id.user_dictionary_tools_table);
247 private TableLayout.LayoutParams tableCreateParam(int w, int h) {
248 return new TableLayout.LayoutParams(w, h);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
ConfirmationPage.java 27 import org.eclipse.jface.viewers.TableLayout;
107 table.setLayout(new TableLayout());
ProjectSelectionPage.java 37 import org.eclipse.jface.viewers.TableLayout;
101 table.setLayout(new TableLayout());
  /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
AccessibilityNodeInfoDumper.java 41 android.widget.ListView.class.getName(), android.widget.TableLayout.class.getName()

Completed in 941 milliseconds

1 2 3