2

Is it meaning that you can build a table row with an empty column ?

I want to do a TableLayout like this :

+--------------+---------------------+
+  *Nothing*   +     LinearLayout    +
+------------------------------------+
+ LinearLayout +      *Nothing*      +
+--------------+---------------------+

Is it possible with index property ?

TableRow topTableRow = new TableRow(context);
topTableRow.addView(xAxisScrollView, 1);
addView(topTableRow);

TableRow bottomTableRow = new TableRow(context);
bottomTableRow.addView(yAxisScrollView, 0);
addView(bottomTableRow);
Codii
  • 873
  • 7
  • 18

1 Answers1

0

As you can read in the documentation, it should be possible. But I would just try it. It's done in 2 minutes ;)