HomeSort by relevance Sort by last modified time
    Searched full:tablelayout (Results 1 - 25 of 332) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
completion1-expected-applyCompletion10.diff 1 Code completion in completion1.xml for <T^extView selecting TableLayout:
4 + <TableLayout^
completion1-expected-completion10.txt 4 TableLayout
completion1-expected-completion11.txt 46 <TableLayout ></TableLayout>
completion1-expected-completion12.txt 46 <TableLayout ></TableLayout>
completion9-expected-completion64.txt 46 <TableLayout ></TableLayout>
  /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...]
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...]
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...]
  /sdk/testapps/testSensors/res/layout/
main.xml 8 <TableLayout
9 android:id="@+id/tableLayout"
  /external/replicaisland/res/layout/
conversation_dialog.xml 3 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
12 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android">
31 </TableLayout>
45 </TableLayout
  /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/res/layout/
list_in_horizontal.xml 17 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
29 </TableLayout>
add_column_in_table.xml 22 <TableLayout android:id="@+id/table"
39 </TableLayout>
table_layout_weight.xml 21 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
44 </TableLayout>
  /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);
  /cts/tests/tests/widget/res/layout/
table_layout_1.xml 23 <TableLayout
42 </TableLayout>
44 <TableLayout
table_layout_2.xml 17 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
36 </TableLayout>
  /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) {
  /development/samples/ApiDemos/res/layout/
table_layout_2.xml 17 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
40 </TableLayout>
table_layout_4.xml 18 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
42 </TableLayout>
  /packages/apps/Contacts/tests/res/layout/
result.xml 24 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
30 </TableLayout>
  /frameworks/base/tests/BiDiTests/res/layout/
table_layout_locale.xml 27 <TableLayout android:layout_width="wrap_content"
70 </TableLayout>
72 <TableLayout android:layout_width="wrap_content"
116 </TableLayout>
118 <TableLayout android:layout_width="wrap_content"
162 </TableLayout>
164 <TableLayout android:layout_width="wrap_content"
208 </TableLayout>
210 <TableLayout android:layout_width="wrap_content"
254 </TableLayout>
    [all...]

Completed in 718 milliseconds

1 2 3 4 5 6 7 8 91011>>