2011-08-31 57 views
0

我有一個問題,聽起來像這樣:我創建一組動態視圖,它們都具有相同的參數。從xml獲取動態創建的視圖的參數

TableLayout tab = (TableLayout) findViewById(R.id.itemsTableLayout); 
... 

row = new TableRow(this); 
row.setLayoutParams(new LayoutParams(
       LayoutParams.FILL_PARENT, 
       LayoutParams.WRAP_CONTENT)); 
tab.addView(row); 

的問題是:我怎樣才能從參數XML此佈局。我的意思是我怎樣才能從xml中使用getLayoutParams之類的東西?

感謝, Arkde

回答