I am trying to display table data in tabular form in android program.
my table:
orderno productid productqty custid
1 1000001 2 00010
2 1000001 5 00010
i want display that table in the android front end. For that i write the following program:
dbadapter.open();
Cursor cursor=dbadapter.fetchordersdata(custid);
int count=cursor.getCount();
From this i am getting the table data. How can i arrange this data in tabular form.
thanks in advance......
