Searched refs:TableRow (Results 1 – 9 of 9) sorted by relevance
/frameworks/opt/colorpicker/src/com/android/colorpicker/ |
D | ColorPickerPalette.java | 26 import android.widget.TableRow; 73 private TableRow createTableRow() { in createTableRow() 74 TableRow row = new TableRow(getContext()); in createTableRow() 102 TableRow row = createTableRow(); in drawPalette() 133 private static void addSwatchToRow(TableRow row, View swatch, int rowNumber) { in addSwatchToRow() 177 TableRow.LayoutParams params = new TableRow.LayoutParams(mSwatchLength, mSwatchLength); in createBlankSpace() 189 TableRow.LayoutParams params = new TableRow.LayoutParams(mSwatchLength, mSwatchLength); in createColorSwatch()
|
/frameworks/base/docs/html/guide/topics/ui/layout/ |
D | grid.jd | 15 <li>{@link android.widget.TableRow}</li> 30 <p>{@link android.widget.TableRow} objects are the child views of a TableLayout 31 (each TableRow defines a single row in the table). 47 <TableRow> 55 </TableRow> 57 <TableRow> 65 </TableRow> 89 <TableRow> 98 </TableRow> 100 <TableRow> [all …]
|
/frameworks/base/core/tests/coretests/src/android/widget/layout/table/ |
D | AddColumnTest.java | 27 import android.widget.TableRow; 62 TableRow row1 = (TableRow) mTable.getChildAt(0); in testWidths() 63 TableRow row2 = (TableRow) mTable.getChildAt(1); in testWidths()
|
D | AddColumn.java | 26 import android.widget.TableRow; 42 final TableRow newRow = new TableRow(AddColumn.this); in onCreate() 47 newRow.addView(view, new TableRow.LayoutParams()); in onCreate()
|
/frameworks/base/core/java/android/widget/ |
D | TableLayout.java | 294 if (view instanceof TableRow) { in setColumnCollapsed() 295 ((TableRow) view).setColumnCollapsed(columnIndex, isCollapsed); in setColumnCollapsed() 377 if (child instanceof TableRow) { in trackCollapsedColumns() 378 final TableRow row = (TableRow) child; in trackCollapsedColumns() 457 if (child instanceof TableRow) { in measureChildBeforeLayout() 458 ((TableRow) child).setColumnsWidthConstraints(mMaxWidths); in measureChildBeforeLayout() 499 if (child instanceof TableRow) { in findLargestCells() 500 final TableRow row = (TableRow) child; in findLargestCells() 591 if (child instanceof TableRow) { in mutateColumnsWidth()
|
D | TableRow.java | 46 public class TableRow extends LinearLayout { class 59 public TableRow(Context context) { in TableRow() method in TableRow 71 public TableRow(Context context, AttributeSet attrs) { in TableRow() method in TableRow 267 return ((TableRow.LayoutParams) child.getLayoutParams()).mOffset[LayoutParams.LOCATION]; in getLocationOffset() 275 … return ((TableRow.LayoutParams) child.getLayoutParams()).mOffset[LayoutParams.LOCATION_NEXT]; in getNextLocationOffset() 354 return new TableRow.LayoutParams(getContext(), attrs); in generateLayoutParams() 372 return p instanceof TableRow.LayoutParams; in checkLayoutParams() 385 return TableRow.class.getName(); in getAccessibilityClassName()
|
/frameworks/base/docs/html/ |
D | sitemap.txt | 1584 http://developer.android.com/reference/android/widget/TableRow.html 1585 http://developer.android.com/reference/android/widget/TableRow.LayoutParams.html
|
/frameworks/base/api/ |
D | current.txt | 41439 public class TableRow extends android.widget.LinearLayout { 41440 ctor public TableRow(android.content.Context); 41441 ctor public TableRow(android.content.Context, android.util.AttributeSet); 41446 public static class TableRow.LayoutParams extends android.widget.LinearLayout.LayoutParams { 41447 ctor public TableRow.LayoutParams(android.content.Context, android.util.AttributeSet); 41448 ctor public TableRow.LayoutParams(int, int); 41449 ctor public TableRow.LayoutParams(int, int, float); 41450 ctor public TableRow.LayoutParams(); 41451 ctor public TableRow.LayoutParams(int); 41452 ctor public TableRow.LayoutParams(android.view.ViewGroup.LayoutParams); [all …]
|
D | system-current.txt | 44045 public class TableRow extends android.widget.LinearLayout { 44046 ctor public TableRow(android.content.Context); 44047 ctor public TableRow(android.content.Context, android.util.AttributeSet); 44052 public static class TableRow.LayoutParams extends android.widget.LinearLayout.LayoutParams { 44053 ctor public TableRow.LayoutParams(android.content.Context, android.util.AttributeSet); 44054 ctor public TableRow.LayoutParams(int, int); 44055 ctor public TableRow.LayoutParams(int, int, float); 44056 ctor public TableRow.LayoutParams(); 44057 ctor public TableRow.LayoutParams(int); 44058 ctor public TableRow.LayoutParams(android.view.ViewGroup.LayoutParams); [all …]
|