首先,你必須創建一個textview的實例,向它添加文本,然後將它添加到表中。事情是這樣的:
類聲明:
public class Cell extends TextView{
public Cell(Context context) {
super(context);
}
}
創建這個類的一個實例,並將其添加到表:
TableLayout table;
table = (TableLayout) findViewById(R.id.table_id);
// New instance of a table row
TableRow row = new TableRow(getActivity());
// New instances of our new class
Cell txt1 = new Cell(this);
Cell txt2 = new Cell(this);
Cell txt3 = new Cell(this);
// Add them to a row
row.addView(txt1,0); // Second argument is the column of the table
row.addView(txt2,1);
row.addView(txt3,2);
// Add the row to the table
tbl.addView(row);
該表是包含其他視圖的視圖。
希望這會有所幫助!
嘗試向東西發生的部分添加更多代碼。 –
對不起。該鏈接似乎已被取消。請參閱編輯。 –