2013-03-20 75 views
0

我有一個在充氣xml中的按鈕,我想要它的xml id。請幫我一些東西........ 我誇大了這樣的東西。問題,同時在ANDROID中膨脹xml

RelativeLayout mainLayout = (RelativeLayout)findViewById(R.id.relative); 

//創建視圖以膨脹layout_item(與之前創建的TextView的所述XML)

view = getLayoutInflater().inflate(R.layout.inflate, mainLayout,false); 

//添加視圖到主佈局

mainLayout.addView(view); 
+0

你的問題是什麼?你需要從膨脹的佈局中獲得佈局或視圖嗎?你可以使用view.findViewById(R.id.yourLayoutId); – Neil 2013-03-20 06:26:33

+0

@kavya你的問題是什麼? – 2013-03-20 06:27:33

+0

問題在哪裏? – ngesh 2013-03-20 06:27:50

回答

0

檢查這代碼

RelativeLayout mainLayout = (RelativeLayout)findViewById(R.id. relative); 
View childLayout = getLayoutInflater().inflate(R.layout.child); 
mainLayout.addView(childLayout);