2011-07-25 77 views

回答

2

膨脹所需的佈局在所需的佈局。

下面是一個例子

LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE); 
     View v = inflater.inflate(R.layout.temp, null); 
     LinearLayout rl = (LinearLayout)findViewById(R.id.glavenfrejm); 
     LinearLayout.LayoutParams parametri = new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT); 
     parametri.addRule(LinearLayout.ALIGN_PARENT_TOP); 
     rl.addView(v, parametri); 

而這個問題已經回答了成千上萬的時間。環顧四周,更多下次:)

乾杯。

+0

中使用「setId()」,這不是解決方案。我需要以編程方式更改標籤 – Waypoint

相關問題