0
A
回答
0
你可以通過閱讀表格來填充表格視圖行如下:
TableLayout x = (TableLayout) findViewById(R.id.table_id);
for(int i=0;i<x.getChildCount();i++){
TableRow tr = (TableRow) x.getChildAt(index);
//Do here with table row, what u want to do.
}
0
TableLayout layout = (TableLayout) findViewById(R.id.table);
TableRow tr = new TableRow(context);
TextView view = new TextView(context);
view.setText("Test");
tr.addView(view);
layout.addView(tr);
相關問題
- 1. 連接到泰伯維
- 2. 泰伯維每次
- 3. 調用泰伯維
- 4. 的registerClass錯誤泰伯維
- 5. 插入的CollectionView到泰伯維細胞
- 6. 泰伯維:添加陰影
- 7. 實時泰伯維變化
- 8. iOS版 - 泰伯維渲染
- 9. 泰伯維頭問題
- 10. Spritekit - Spritenode在泰伯維
- 11. 泰伯維android系統
- 12. 無法顯示泰伯維
- 13. 泰伯維用2段
- 14. 麻煩與泰伯維
- 15. 泰伯維button.tag擲LLDB
- 16. 泰伯維細胞字幕
- 17. 組合框在泰伯維
- 18. 泰伯維應用從SQLite數據庫
- 19. 將數據載入泰伯維
- 20. 錯誤-swift-泰伯維-custome細胞
- 21. 問題在CGRectMake爲泰伯維在AlertView
- 22. 使用自定義泰伯維節頭
- 23. 泰伯維[cell.contentview viewwithtag:]被返回nil
- 24. 一個tabBarController與NavigationController和泰伯維
- 25. 如何當我們點擊泰伯維
- 26. 無段沒有在泰伯維
- 27. 泰伯維創建程序是空
- 28. 發行對象爲泰伯維
- 29. 從PLIST(字典),以泰伯維
- 30. 使用泰伯維顯示與childByAutoId
@ Vladimir。您正在tablelayout中直接添加textview。它沒有意義。您必須先創建新的表格,然後將textview添加到該表格中,並且該表格行將進入表格佈局 – 2010-12-16 08:00:28
@Umakant Patil,已更新。 – 2010-12-16 08:03:29
它解決了......謝謝各位 – devaditya 2010-12-16 09:48:11