HomeSort by relevance Sort by last modified time
    Searched refs:TableRow (Results 1 - 24 of 24) sorted by null

  /development/samples/ApiDemos/src/com/example/android/apis/view/
TableLayout8.java 24 import android.widget.TableRow;
55 TableRow row = new TableRow(this);
66 row.addView(label, new TableRow.LayoutParams(1));
67 row.addView(shortcut, new TableRow.LayoutParams());
TableLayout7.java 27 import android.widget.TableRow;
64 TableRow row = new TableRow(this);
75 row.addView(label, new TableRow.LayoutParams(1));
76 row.addView(shortcut, new TableRow.LayoutParams());
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
AddColumnTest.java 27 import android.widget.TableRow;
62 TableRow row1 = (TableRow) mTable.getChildAt(0);
63 TableRow row2 = (TableRow) mTable.getChildAt(1);
AddColumn.java 26 import android.widget.TableRow;
42 final TableRow newRow = new TableRow(AddColumn.this);
47 newRow.addView(view, new TableRow.LayoutParams());
  /frameworks/opt/colorpicker/src/com/android/colorpicker/
ColorPickerPalette.java 26 import android.widget.TableRow;
73 private TableRow createTableRow() {
74 TableRow row = new TableRow(getContext());
95 TableRow row = createTableRow();
127 private void addSwatchToRow(TableRow row, View swatch, int rowNumber) {
167 TableRow.LayoutParams params = new TableRow.LayoutParams(mSwatchLength, mSwatchLength);
179 TableRow.LayoutParams params = new TableRow.LayoutParams(mSwatchLength, mSwatchLength)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TableRowTest.java 33 import android.widget.TableRow;
40 * Test {@link TableRow}.
58 new TableRow(mContext);
60 new TableRow(mContext, null);
64 TableRow tableRow = new TableRow(mContext);
67 tableRow.setOnHierarchyChangeListener(listener);
69 tableRow.addView(new TextView(mContext));
71 tableRow.removeViewAt(0)
    [all...]
TableRow_LayoutParamsTest.java 30 import android.widget.TableRow;
39 * Test {@link TableRow.LayoutParams}.
57 new TableRow.LayoutParams(mTargetContext, null);
59 TableRow.LayoutParams layoutParams = new TableRow.LayoutParams(200, 300);
66 layoutParams = new TableRow.LayoutParams(200, 300, 1.2f);
74 layoutParams = new TableRow.LayoutParams();
78 layoutParams = new TableRow.LayoutParams(5);
82 layoutParams = new TableRow.LayoutParams(oldParams);
88 layoutParams = new TableRow.LayoutParams(oldMarginParams)
    [all...]
TableLayoutTest.java 36 import android.widget.TableRow;
168 tableLayout.addView(new TableRow(mContext));
169 tableLayout.addView(new TableRow(mContext));
227 TextView column0 = (TextView) ((TableRow) tableLayout.getChildAt(0)).getChildAt(0);
228 TextView column1 = (TextView) ((TableRow) tableLayout.getChildAt(0)).getChildAt(1);
229 TextView column2 = (TextView) ((TableRow) tableLayout.getChildAt(0)).getChildAt(2);
340 tableLayout.addView(new TableRow(mContext));
341 tableLayout.addView(new TableRow(mContext));
466 View child2 = new TableRow(mContext);
468 tableLayout.addView(child2, new TableRow.LayoutParams(200, 300, 1))
    [all...]
  /frameworks/base/core/java/android/widget/
TableRow.java 32 * <p>A layout that arranges its children horizontally. A TableRow should
34 * TableRow's parent is not a TableLayout, the TableRow will behave as
37 * <p>The children of a TableRow do not need to specify the
39 * XML file. TableRow always enforces those values to be respectively
44 * Also see {@link TableRow.LayoutParams android.widget.TableRow.LayoutParams}
47 public class TableRow extends LinearLayout {
56 * <p>Creates a new TableRow for the given context.</p>
60 public TableRow(Context context)
    [all...]
TableLayout.java 34 * A TableLayout consists of a number of {@link android.widget.TableRow} objects,
60 * is a {@link android.widget.TableRow}, then the height is always
69 * <p>Although the typical child of a TableLayout is a TableRow, you can
281 * a {@link android.widget.TableRow}.</p>
297 if (view instanceof TableRow) {
298 ((TableRow) view).setColumnCollapsed(columnIndex, isCollapsed);
374 * <p>This method only applies to {@link android.widget.TableRow}
380 if (child instanceof TableRow) {
381 final TableRow row = (TableRow) child
    [all...]
  /sdk/testapps/testSensors/src/com/android/tests/testsensors/
TestSensorsActivity.java 30 import android.widget.TableRow;
63 final TableRow row = (TableRow) inflater.inflate(R.layout.one_row, mTableLayout, false);
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
SensorActivity.java 34 import android.widget.TableRow;
184 final TableRow row = (TableRow) inflater.inflate(R.layout.sensor_row,
210 public DisplayInfo(MonitoredSensor sensor, TableRow row) {
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
ResultActivity.java 37 import android.widget.TableRow;
179 TableRow row = new TableRow(this);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
UserDictionaryToolsList.java 44 import android.widget.TableRow;
677 TableRow row = new TableRow(this);
  /packages/apps/Dialer/src/com/android/dialer/dialpad/
DialpadFragment.java 69 import android.widget.TableRow;
624 dialpadKey.setLayoutParams(new TableRow.LayoutParams(
625 TableRow.LayoutParams.MATCH_PARENT, TableRow.LayoutParams.MATCH_PARENT));
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
DialpadFragment.java 34 import android.widget.TableRow;
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 

Completed in 3429 milliseconds