/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
|
/cts/tests/tests/widget/src/android/widget/cts/ |
TableLayoutTest.java | 35 import android.widget.TableLayout; 40 * Test {@link TableLayout}. 57 new TableLayout(mContext); 59 new TableLayout(mContext, null); 63 TableLayout tableLayout = (TableLayout) activity 65 assertTrue(tableLayout.isColumnCollapsed(0)); 66 assertTrue(tableLayout.isColumnStretchable(2)); 69 tableLayout = (TableLayout) activity.findViewById(com.android.cts.stub.R.id.table2) [all...] |
TableLayout_LayoutParamsTest.java | 25 import android.widget.TableLayout; 34 * Test {@link TableLayout.LayoutParams}. 46 new TableLayout.LayoutParams(mTargetContext, null); 48 TableLayout.LayoutParams layoutParams = new TableLayout.LayoutParams(200, 300); 49 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, layoutParams.width); 51 TableLayout.LayoutParams oldParams = layoutParams; 53 layoutParams = new TableLayout.LayoutParams(200, 300, 1.2f); 54 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, layoutParams.width); 57 TableLayout.LayoutParams oldMarginParams = layoutParams [all...] |
TableRowTest.java | 32 import android.widget.TableLayout; 87 TableLayout tableLayout = (TableLayout) activity 90 TableRow tableRow = (TableRow) tableLayout.getChildAt(0); 100 tableLayout = (TableLayout) activity.findViewById(com.android.cts.stub.R.id.table2); 102 tableRow = (TableRow) tableLayout.getChildAt(0); 118 TableLayout tableLayout = (TableLayout) activit [all...] |
TableRow_LayoutParamsTest.java | 29 import android.widget.TableLayout; 97 TableLayout tableLayout = (TableLayout) activity.findViewById(idTable); 98 View vVitural1 = ((TableRow) tableLayout.getChildAt(0)).getVirtualChildAt(1); 101 View vVitural2 = ((TableRow) tableLayout.getChildAt(0)).getVirtualChildAt(2); 139 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, mockLayoutParams.width); 140 assertEquals(TableLayout.LayoutParams.WRAP_CONTENT, mockLayoutParams.height); 144 assertEquals(TableLayout.LayoutParams.WRAP_CONTENT, mockLayoutParams.width); 145 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
|
/external/webkit/Source/WebCore/rendering/ |
TableLayout.h | 31 class TableLayout { 32 WTF_MAKE_NONCOPYABLE(TableLayout); WTF_MAKE_FAST_ALLOCATED; 34 TableLayout(RenderTable* table) 39 virtual ~TableLayout() { }
|
AutoTableLayout.h | 25 #include "TableLayout.h" 33 class AutoTableLayout : public TableLayout {
|
FixedTableLayout.h | 25 #include "TableLayout.h" 32 class FixedTableLayout : public 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);
|
/sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/client/api/ |
DefaultSdkInfoTest.java | 30 info.getParentViewClass("android.widget.TableLayout")); 38 assertEquals("LinearLayout", info.getParentViewName("TableLayout")); 52 assertTrue(info.isSubViewOf("LinearLayout", "TableLayout")); 53 assertFalse(info.isSubViewOf("TableLayout", "LinearLayout"));
|
/frameworks/base/docs/html/guide/topics/ui/layout/ |
grid.jd | 14 <li>{@link android.widget.TableLayout}</li> 20 <p>{@link android.widget.TableLayout} is a {@link android.view.ViewGroup} that 26 <p>{@link android.widget.TableLayout} positions its children into rows 27 and columns. TableLayout containers do not display border lines for their rows, columns, 30 <p>{@link android.widget.TableRow} objects are the child views of a TableLayout 34 A cell may also be a ViewGroup object (for example, you can nest another TableLayout as a cell).</p> 43 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" 66 </TableLayout> 74 fits the screen. See the {@link android.widget.TableLayout TableLayout reference} [all...] |
/cts/tests/res/layout/ |
table_layout_1.xml | 17 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" 35 </TableLayout>
|
table_layout_2.xml | 17 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" 36 </TableLayout>
|
/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>
|