我有一個問題,聽起來像這樣:我創建一組動態視圖,它們都具有相同的參數。從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
感謝弗拉基米爾:)它真的幫了我:) – Arkde
我很高興它幫助:) – Vladimir