I have this ArrayList:
ArrayList debtList = datasource.debtList;
ArrayList feeList = datasource.feeList;
How
Ok, you have two arraylists debtList and feeList, I assume both the arraylist contains equal number of elements, now iterate through this list, Create Table Row add two textViews to table row, and add tablerow to the tableLayout, so you can do following:
ArrayList debtList = datasource.debtList;
ArrayList feeList = datasource.feeList;
TableLayout table = (TableLayout) findViewById(R.id.myTableLayout);
for(int i=0;i