1

I'm looking to create a table with 3 cells (TableRow) each cell should have the dimensions of the size of the full screen (width and height).

Should I use something other than a TableLayout to get the same effect?

Thanks a lot.

Here is an example of the expected result

gal.m
  • 35
  • 6

1 Answers1

0

The standard way of doing this will be by using a RecyclerView along with a Vertical Layout Manager, each and every one of your element will have width and height as match parent.

Mightian
  • 7,149
  • 3
  • 39
  • 50
  • Thank you very much! it is working great! here is an example of how to use RecyclerView with a Vertical Layout Manager. https://stackoverflow.com/questions/40584424/simple-android-recyclerview-example – gal.m Nov 18 '18 at 04:57
  • glad I could help @gal.m – Mightian Nov 19 '18 at 04:43