So I wanted to create a table with 10 columns that has an endless scroll. But when using TableLayout
doesn't it get heavy when it loads a lot of data as it doesn't has view recycling?
But if I had to use RecyclerView
, how to make that every row items has the same column weight? I cannot use weight in item layout, because it contains 10 columns so it needs to be horizontal scrolled. I also do not want to use a fixed width because I don't know how long the text in each column is.
Is there any solution to this? Thank you