我正在尝试在 android 程序中以表格形式显示表格数据。
我的桌子:
orderno productid productqty custid
1 1000001 2 00010
2 1000001 5 00010
我想在 android 前端显示该表。为此,我编写了以下程序:
dbadapter.open();
Cursor cursor=dbadapter.fetchordersdata(custid);
int count=cursor.getCount();
从这里我得到表格数据。如何以表格形式排列这些数据?