I need to display a table with an undefined number of rows, and those rows contain links that could scroll the page to other views or start a new activity. Those rows are a bit complex: I need 1 TextView as a "title" and multiple other TextViews to the right of the title which are the links mentioned above.
My table should look like the "stances one from this website: http://ge.jupath.me/GranadoEspadaSEA-Jobs-Fighter.html#Nav
At first I thought of using a custom ArrayAdapter with a ListView, but the problem of using a ListView is that the complete elements are clickable. As I have multiple links in a row this is not a solution. The other problem is that the table is in a scrollView (you can/should not use a ListView as a child of a scrollable view).
Is there a way to use adapters with another view for this? I know I could simply use the addView method, but I'm not sure if it is the right way to do this.
My tables have a maximum of 10 rows.