/cts/tests/tests/widget/src/android/widget/cts/ |
TableLayoutTest.java | 32 import android.widget.TableLayout; 46 * Test {@link TableLayout}. 48 @TestTargetClass(TableLayout.class) 65 notes = "Test constructor(s) of {@link TableLayout}", 66 method = "TableLayout", 71 notes = "Test constructor(s) of {@link TableLayout}", 72 method = "TableLayout", 78 new TableLayout(mContext); 80 new TableLayout(mContext, null); 84 TableLayout tableLayout = (TableLayout) activit [all...] |
TableLayout_LayoutParamsTest.java | 25 import android.widget.TableLayout; 39 * Test {@link TableLayout.LayoutParams}. 41 @TestTargetClass(TableLayout.LayoutParams.class) 54 notes = "Test constructor(s) of {@link TableLayout.LayoutParams}.", 55 method = "TableLayout.LayoutParams", 60 notes = "Test constructor(s) of {@link TableLayout.LayoutParams}.", 61 method = "TableLayout.LayoutParams", 66 notes = "Test constructor(s) of {@link TableLayout.LayoutParams}.", 67 method = "TableLayout.LayoutParams", 72 notes = "Test constructor(s) of {@link TableLayout.LayoutParams}." [all...] |
TableRowTest.java | 32 import android.widget.TableLayout; 119 TableLayout tableLayout = (TableLayout) activity 122 TableRow tableRow = (TableRow) tableLayout.getChildAt(0); 132 tableLayout = (TableLayout) activity.findViewById(com.android.cts.stub.R.id.table2); 134 tableRow = (TableRow) tableLayout.getChildAt(0); 156 TableLayout tableLayout = (TableLayout) activit [all...] |
TableRow_LayoutParamsTest.java | 29 import android.widget.TableLayout; 147 TableLayout tableLayout = (TableLayout) activity.findViewById(idTable); 148 View vVitural1 = ((TableRow) tableLayout.getChildAt(0)).getVirtualChildAt(1); 151 View vVitural2 = ((TableRow) tableLayout.getChildAt(0)).getVirtualChildAt(2); 197 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, mockLayoutParams.width); 198 assertEquals(TableLayout.LayoutParams.WRAP_CONTENT, mockLayoutParams.height); 202 assertEquals(TableLayout.LayoutParams.WRAP_CONTENT, mockLayoutParams.width); 203 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, mockLayoutParams.height) [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/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);
|
/external/webkit/WebCore/rendering/ |
TableLayout.h | 30 class TableLayout : public Noncopyable { 32 TableLayout(RenderTable* table) 37 virtual ~TableLayout() { }
|
FixedTableLayout.h | 25 #include "TableLayout.h" 32 class FixedTableLayout : public TableLayout {
|
/frameworks/base/docs/html/guide/tutorials/views/ |
hello-tablelayout.jd | 1 page.title=Hello, TableLayout 6 <p>A {@link android.widget.TableLayout} is a ViewGroup that 16 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" 90 </TableLayout> 92 <p>Notice how this resembles the structure of an HTML table. <code>TableLayout</code> is like the 109 <img src="images/hello-tablelayout.png" width="150px" /> 113 <li>{@link android.widget.TableLayout}</li>
|
/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>
|
/packages/apps/Browser/res/layout/ |
ssl_success.xml | 17 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" 44 </TableLayout>
|
ssl_warning.xml | 17 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" 41 </TableLayout>
|
/frameworks/base/tools/layoutlib/create/tests/data/ |
mock_android.jar | |
/frameworks/base/docs/html/guide/topics/ui/ |
layout-objects.jd | 12 <li><a href="#tablelayout">TableLayout</a></li> 91 <h2 id="tablelayout">TableLayout</h2> 92 <p>{@link android.widget.TableLayout} positions its children into rows 93 and columns. TableLayout containers do not display border lines for their rows, columns, 96 <p>{@link android.widget.TableRow} objects are the child views of a TableLayout 100 A cell may also be a ViewGroup object (for example, you can nest another TableLayout as a cell).</p> 109 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" 132 </TableLayout> [all...] |
/frameworks/base/tools/layoutlib/create/tests/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 {
|